We’re overhauling Dgraph’s docs to make them clearer and more approachable. If you notice any issues during this transition or have suggestions, please let us know.
Recurse
queries let you traverse a set of predicates (with filter, facets,
etc.) until we reach all leaf nodes or we reach the maximum depth which is
specified by the depth
parameter.
To get 10 movies from a genre that has more than 30000 films and then get two actors for those movies we’d do something as follows:
Some points to keep in mind while using recurse queries are:
loop
parameter can be set to false, in which case paths which lead to a
loop would be ignored while traversing.loop
parameter defaults to false.loop
parameter is false and depth is not specified,
depth
will default to math.MaxUint64
, which means that the entire graph
might be traversed until all the leaf nodes are reached.We’re overhauling Dgraph’s docs to make them clearer and more approachable. If you notice any issues during this transition or have suggestions, please let us know.
Recurse
queries let you traverse a set of predicates (with filter, facets,
etc.) until we reach all leaf nodes or we reach the maximum depth which is
specified by the depth
parameter.
To get 10 movies from a genre that has more than 30000 films and then get two actors for those movies we’d do something as follows:
Some points to keep in mind while using recurse queries are:
loop
parameter can be set to false, in which case paths which lead to a
loop would be ignored while traversing.loop
parameter defaults to false.loop
parameter is false and depth is not specified,
depth
will default to math.MaxUint64
, which means that the entire graph
might be traversed until all the leaf nodes are reached.