You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.
typeUserWhereInput {
AND: [UserWhereInput]
OR: [UserWhereInput]
# String fieldfield: String # equalsfield_not: String # not equalsfield_contains: String # contains substringfield_not_contains: String # does not contain substringfield_starts_with: Stringfield_not_starts_with: Stringfield_ends_with: Stringfield_not_ends_with: Stringfield_lt: String # less thanfield_lte: String # less then or equalsfield_gt: String # greater thanfield_gte: String # greater than or equalsfield_in: [String] # in listfield_not_in: [String] # not in list # Integer fieldfield: Integer # equalsfield_not: Integer # not equalsfield_lt: Integer # less thanfield_lte: Integer # less then or equalsfield_gt: Integer # greater thanfield_gte: Integer # greater than or equalsfield_in: [Integer] # in listfield_not_in: [Integer] # not in list # Float fieldfield: Float # equalsfield_not: Float # not equalsfield_lt: Float # less thanfield_lte: Float # less then or equalsfield_gt: Float # greater thanfield_gte: Float # greater than or equalsfield_in: [Float] # in listfield_not_in: [Float] # not in list # Boolean fieldfield: Boolean # equalsfield_not: Boolean # not equals # DateTime fieldfield: DateTime # equalsfield_not: DateTime # not equalsfield_in: [DateTime] # in listfield_not_in: [DateTime] # not in listfield_lt: DateTime # less thanfield_lte: DateTime # less then or equalsfield_gt: DateTime # greater thanfield_gte: DateTime # greater than or equals # Enum fieldfield: Enum # equalsfield_not: Enum # not equalsfield_in: [Enum] # in listfield_not_in: [Enum] # not in list # List[T] field # note: not supported yetfield_contains: T # contains single scalar Tfield_contains_every: [T] # contains all scalar Tfield_contains_some: [T] # contains at least 1 scalar T # many Relation field # note: handling the empty list case is trivial. Do we need special support for the null case?field_every: FilterCondition # condition must be true for all nodesfield_some: FilterCondition # condition must be true for at least 1 nodefield_none: FilterCondition # condition must be false for all nodesfield_is_null: Boolean # is the relation field null # todo: add support for aggregation filters # one Relation field # note: if field is null then field{id: "some-id"} would be false, but would field{id_not: "some-id"} be true?field: UserWhereInput # condition must be true for related node
}
The text was updated successfully, but these errors were encountered:
The SQL connector exposes the following filter:
The text was updated successfully, but these errors were encountered: