INPUT_OBJECT

MutezFilter

Filter conditions for filtering associated property of the type Mutez!.

link GraphQL Schema definition

  • input MutezFilter {
  • # Specifies the exact value to match.
  • equalTo: Mutez
  • # Matches values greater than the specified value.
  • greaterThan: Mutez
  • # Matches values greater than or equal to the specified value.
  • greaterThanOrEqualTo: Mutez
  • # Specifies a list of exact values to match.
  • in: [Mutez!]
  • # Matches values less than the specified value.
  • lessThan: Mutez
  • # Matches values less than or equal to the specified value.
  • lessThanOrEqualTo: Mutez
  • # Specifies the exact value NOT to match.
  • notEqualTo: Mutez
  • # Specifies a list of exact values NOT to match.
  • notIn: [Mutez!]
  • }