INPUT_OBJECT

Filter

Filter is a generic filter using Common Expression Language

link GraphQL Schema definition

  • input Filter {
  • # gtype is the doc/connection type to be filtered
  • gtype: String!
  • # expression is a CEL expression used to filter connections/nodes
  • expression: String
  • # limit is the maximum number of items to return
  • limit: Int!
  • # custom sorting of the results.
  • sort: String
  • # seek to a specific key for pagination
  • seek: String
  • # reverse the results
  • reverse: Boolean
  • # search in a specific index
  • index: String
  • }