Studio Service

DateFilter

DateFilter

A filter to be used against Date fields. All fields are combined with a logical ‘and.’

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToDateEqual to the specified value.
notEqualToDateNot equal to the specified value.
distinctFromDateNot equal to the specified value, treating null like an ordinary value.
notDistinctFromDateEqual to the specified value, treating null like an ordinary value.
in[Date!]Included in the specified list.
notIn[Date!]Not included in the specified list.
lessThanDateLess than the specified value.
lessThanOrEqualToDateLess than or equal to the specified value.
greaterThanDateGreater than the specified value.
greaterThanOrEqualToDateGreater than or equal to the specified value.