Skip to content

Latest commit

 

History

History
20 lines (20 loc) · 270 Bytes

dgraph.md

File metadata and controls

20 lines (20 loc) · 270 Bytes

Sample query to use in ratel to view the data

{
  Page(func: eq(url, "<target_url>")) {   
    url
    title
    depth
    related_pages {
      title
      url
      depth
      related_pages {
        url
        title
        depth 
      }
    }
  }
}