OfficeWhere
Defines the office filter criteria used when searching for events in EventsAir.
The following rules apply:
- Where a field accepts a list of values as a filter, those values are applied using an
OR
operator. - If specifying multiple fields to filter on (for example both
names
anduniqueCodes
), fields are applied using anAND
operator.
input OfficeWhere {
ids: [ID!]
names: [String!]
uniqueCodes: [String!]
}
Fields
OfficeWhere.ids
● [ID!]
list scalar
Filter events or contact stores based on their office identifiers(s). Optional.
OfficeWhere.names
● [String!]
list scalar
Filter events or contact stores based on their office name(s). Optional.
OfficeWhere.uniqueCodes
● [String!]
list scalar
Filter events or contact stores based on their office unique code(s). Optional.
Member Of
ContactStoresWhere
input ● EventsWhere
input