DatetimeFilter
DatetimeFilter
A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’
| Field | Type | Description | |
|---|---|---|---|
| isNull | Boolean | Is null (if `true` is specified) or is not null (if `false` is specified). | |
| equalTo | Datetime | Equal to the specified value. | |
| notEqualTo | Datetime | Not equal to the specified value. | |
| distinctFrom | Datetime | Not equal to the specified value, treating null like an ordinary value. | |
| notDistinctFrom | Datetime | Equal to the specified value, treating null like an ordinary value. | |
| in | [Datetime!] | Included in the specified list. | |
| notIn | [Datetime!] | Not included in the specified list. | |
| lessThan | Datetime | Less than the specified value. | |
| lessThanOrEqualTo | Datetime | Less than or equal to the specified value. | |
| greaterThan | Datetime | Greater than the specified value. | |
| greaterThanOrEqualTo | Datetime | Greater than or equal to the specified value. | |