INPUT_OBJECT

MutezFilter

Provides filters for relational comparison of the property value of Mutez type.

link GraphQL Schema definition

  • input MutezFilter {
  • # Matches if the property value equals to this filter value.
  • equalTo: Mutez
  • # Matches if the property value does NOT equal to this filter value.
  • notEqualTo: Mutez
  • # Matches if the property value is contained in these filter values.
  • in: [Mutez!]
  • # Matches if the property value is NOT contained in these filter values.
  • notIn: [Mutez!]
  • # Matches if the property value is less than this filter value.
  • lessThan: Mutez
  • # Matches if the property value is less than or equal to this filter value.
  • lessThanOrEqualTo: Mutez
  • # Matches if the property value is greater than this filter value.
  • greaterThanOrEqualTo: Mutez
  • # Matches if the property value is greater than or equal to this filter value.
  • greaterThan: Mutez
  • }