NullableDateTimeFilterInput
Filter which can be used to filter for Nodes with a specific DateTime field
input NullableDateTimeFilterInput {
eq: DateTime
gt: DateTime
gte: DateTime
in: [DateTime!]
isNull: Boolean
lt: DateTime
lte: DateTime
}
Fields
NullableDateTimeFilterInput.eq
● DateTime
scalar
Matches values which are equal to the provided value
NullableDateTimeFilterInput.gt
● DateTime
scalar
Matches values which are greater than the provided value
NullableDateTimeFilterInput.gte
● DateTime
scalar
Matches values which are greater than or equal to the provided value
NullableDateTimeFilterInput.in
● [DateTime!]
list scalar
Matches values which are equal to any of the provided values
NullableDateTimeFilterInput.isNull
● Boolean
scalar
If true, matches only null values, if false, matches only non-null values
NullableDateTimeFilterInput.lt
● DateTime
scalar
Matches values which are lesser than the provided value
NullableDateTimeFilterInput.lte
● DateTime
scalar
Matches values which are lesser than or equal to the provided value
Member of
IssueFilterInput
input