INPUT_OBJECT

NullableDateTimeFilter

Filter conditions for filtering associated property of the type DateTime.

link GraphQL Schema definition

  • input NullableDateTimeFilter {
  • # Specifies the exact value to match.
  • equalTo: DateTime
  • # Matches values greater than the specified value.
  • greaterThan: DateTime
  • # Matches values greater than or equal to the specified value.
  • greaterThanOrEqualTo: DateTime
  • # Specifies a list of exact values to match.
  • in: [DateTime!]
  • # Matches `null` value if `true` is specified. Matches not `null` values if
  • # `false` is specified. Matches everything if nothing is specified.
  • isNull: Boolean
  • # Matches values less than the specified value.
  • lessThan: DateTime
  • # Matches values less than or equal to the specified value.
  • lessThanOrEqualTo: DateTime
  • # Specifies the exact value NOT to match.
  • notEqualTo: DateTime
  • # Specifies a list of exact values NOT to match.
  • notIn: [DateTime!]
  • }