INPUT_OBJECT

DateTimeFilter

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

link GraphQL Schema definition

  • input DateTimeFilter {
  • # 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 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!]
  • }