INPUT_OBJECT

ExistsFilter

Exists is a filter used to determine whether a doc/connection exists in the graph

link GraphQL Schema definition

  • input ExistsFilter {
  • # gtype is the doc/connection type to be filtered
  • gtype: String!
  • # expression is a CEL expression used to filter connections/nodes
  • expression: String!
  • # seek to a specific key for pagination
  • seek: String
  • # reverse the results
  • reverse: Boolean
  • # search in a specific index
  • index: String
  • }

link Require by