INPUT_OBJECT

BigFloatFilter

A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’

link GraphQL Schema definition

  • input BigFloatFilter {
  • # Is null (if `true` is specified) or is not null (if `false` is specified).
  • isNull: Boolean
  • # Equal to the specified value.
  • equalTo: BigFloat
  • # Not equal to the specified value.
  • notEqualTo: BigFloat
  • # Not equal to the specified value, treating null like an ordinary value.
  • distinctFrom: BigFloat
  • # Equal to the specified value, treating null like an ordinary value.
  • notDistinctFrom: BigFloat
  • # Included in the specified list.
  • in: [BigFloat!]
  • # Not included in the specified list.
  • notIn: [BigFloat!]
  • # Less than the specified value.
  • lessThan: BigFloat
  • # Less than or equal to the specified value.
  • lessThanOrEqualTo: BigFloat
  • # Greater than the specified value.
  • greaterThan: BigFloat
  • # Greater than or equal to the specified value.
  • greaterThanOrEqualTo: BigFloat
  • }