Studio Service

DatetimeFilter

DatetimeFilter

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

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToDatetimeEqual to the specified value.
notEqualToDatetimeNot equal to the specified value.
distinctFromDatetimeNot equal to the specified value, treating null like an ordinary value.
notDistinctFromDatetimeEqual 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.
lessThanDatetimeLess than the specified value.
lessThanOrEqualToDatetimeLess than or equal to the specified value.
greaterThanDatetimeGreater than the specified value.
greaterThanOrEqualToDatetimeGreater than or equal to the specified value.