TypeIDWhere
A comparison predicate for filtering types on their id field.
input TypeIDWhere {
equals: TypeID
notEquals: TypeID
in: [TypeID!]
notIn: [TypeID!]
}
Fields
TypeIDWhere.equals ● TypeID scalar common
The type's id is equal to the given id.
TypeIDWhere.notEquals ● TypeID scalar common
The type's id is not equal to the given id.
TypeIDWhere.in ● [TypeID!] list scalar common
The type's id is equal to one of the given ids.
TypeIDWhere.notIn ● [TypeID!] list scalar common
The type's id is not equal to any of the given ids.