INPUT_OBJECT

OrgUserFilter

A filter to be used against OrgUser object types. All fields are combined with a logical ‘and.’

link GraphQL Schema definition

  • input OrgUserFilter {
  • # Filter by the object’s `userId` field.
  • userId: UUIDFilter
  • # Filter by the object’s `organizationId` field.
  • organizationId: UUIDFilter
  • # Filter by the object’s `admin` field.
  • admin: BooleanFilter
  • # Filter by the object’s `createdAt` field.
  • createdAt: DatetimeFilter
  • # Filter by the object’s `phoneNumber` field.
  • phoneNumber: StringFilter
  • # Filter by the object’s `firstName` field.
  • firstName: StringFilter
  • # Filter by the object’s `lastName` field.
  • lastName: StringFilter
  • # Filter by the object’s `jobRole` field.
  • jobRole: StringFilter
  • # Filter by the object’s `country` field.
  • country: StringFilter
  • # Filter by the object’s `email` field.
  • email: StringFilter
  • # Checks for all expressions in this list.
  • and: [OrgUserFilter!]
  • # Checks for any expressions in this list.
  • or: [OrgUserFilter!]
  • # Negates the expression.
  • not: OrgUserFilter
  • }