INPUT_OBJECT

DatetimeFilter

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

link GraphQL Schema definition

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