INPUT_OBJECT
TraverseMeFilter
TraverseMeFilter is a filter used for graph traversals of the origin user
link GraphQL Schema definition
- input TraverseMeFilter {
- # doc_expression is a boolean CEL expression used to determine which docs to
- # traverse
- String :
- # connection_expression is a boolean CEL expression used to determine which
- # connections to traverse
- String :
- # limit is the maximum number of items to return
- Int! :
- # custom sorting of the results.
- String :
- # reverse the direction of the connection traversal
- Boolean :
- # DFS(depth-first-search) or BFS(breadth-first-search). Defaults to breadth-first
- Algorithm :
- # maximum degree/depth of nodes to be visited during traversal
- Int! :
- # maximum number of nodes to be visited during traversal
- Int! :
- }