INPUT_OBJECT
TraverseFilter
TraverseFilter is a filter used for graph traversals
link GraphQL Schema definition
- input TraverseFilter {
- #   gtype is the doc/connection type to be filtered
- : RefInput!
- #   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!
- }