Skip to main content

DateTimeRangeInput

A range of date-time values used for filtering. Both bounds are optional and inclusive.

input DateTimeRangeInput {
start: DateTime
end: DateTime
}

Fields
Link copied!

DateTimeRangeInput.start ● DateTime scalar
Link copied!

The start of the date range (inclusive). When provided without end, acts as an "on or after" filter.

DateTimeRangeInput.end ● DateTime scalar
Link copied!

The end of the date range (inclusive). When provided without start, acts as an "on or before" filter.