INPUT_OBJECT

TemporalDataObjectDateTimeFilter

Specify a filter on a TemporalDataObject date/time field. At least one of toDateTime and fromDateTime must be provided.

link GraphQL Schema definition

1input TemporalDataObjectDateTimeFilter {
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: TemporalDataObjectDateTimeField!
17}