ENUM

QueryFilterOperator

Operators to help in the filtering

link GraphQL Schema definition

  • enum QueryFilterOperator {
  • # The CONTAINS operator does a case sensitive check for the passed string being
  • # part of the value. Example 'foo' passed and value being 'foobar' will match
  • CONTAINS
  • # The ENDSWITH operator does a case sensitive check for the passed string being
  • # end of the value. Example 'bar' passed and value being 'foobar' will match
  • ENDSWITH
  • EQ
  • GT
  • GTE
  • # The ISNULL operator does not require the value to be set.
  • ISNOTNULL
  • # The ISNULL operator does not require the value to be set.
  • ISNULL
  • LT
  • LTE
  • NEQ
  • # The STARTSWITH operator does a case sensitive check for the passed string being
  • # start of the value. Example 'foo' passed and value being 'foobar' will match
  • STARTSWITH
  • }