INPUT_OBJECT

UsersDateTimeFilter

link GraphQL Schema definition

1input UsersDateTimeFilter {
4
2# Match if the field value is `toDateTime` or earlier
3toDateTime: DateTime
7
5# Whether the toDateTime is inclusive or exclusive of the input timestamp
6toDateTimeExclusive: Boolean
10
8# Match if the field value is `fromDateTime` or later
9fromDateTime: DateTime
13
11# Whether the fromDateTime is inclusive or exclusive of the input timestamp
12fromDateTimeExclusive: Boolean
16
14# Identify the field to filter on.
15field: UsersDateTimeField
19
17# Field to fallback on if the initial field is NULL in the DB
18fallbackField: UsersDateTimeField
20}