StringWhere
A comparison predicate for filtering on string fields.
At most one field may be specified.
input StringWhere {
contains: String
startsWith: String
endsWith: String
equals: String
notEquals: String
in: [String!]
notIn: [String!]
}
Fields
StringWhere.contains
● String
scalar common
The field being compared contains the given value as a substring.
StringWhere.startsWith
● String
scalar common
The field being compared contains the given value as a prefix.
StringWhere.endsWith
● String
scalar common
The field being compared contains the given value as a suffix.
StringWhere.equals
● String
scalar common
The field being compared is equal to the given value.
StringWhere.notEquals
● String
scalar common
The field being compared is not equal to the given value.
StringWhere.in
● [String!]
list scalar common
The field being compared is equal to one of the given values..
StringWhere.notIn
● [String!]
list scalar common
The field being compared is not equal to any of the given values.
Member of
ObjectsWhere
input ● ObjectTypesWhere
input ● PermissionsWhere
input ● RelationTypesWhere
input