INPUT_OBJECT
UserCondition
A condition to be used against User object types. All fields are tested for equality and combined with a logical ‘and.’
link GraphQL Schema definition
- input UserCondition {
- # Checks for equality with the object’s `id` field.
- : UUID
- # Checks for equality with the object’s `email` field.
- : EmailAddr
- # Checks for equality with the object’s `title` field.
- : String
- # Checks for equality with the object’s `firstName` field.
- : String
- # Checks for equality with the object’s `lastName` field.
- : String
- # Checks for equality with the object’s `companyId` field.
- : UUID
- # Checks for equality with the object’s `updatedAt` field.
- : UpdatedTime
- # Checks for equality with the object’s `createdAt` field.
- : CreatedTime
- }