EventsWhere
Defines the filter criteria for searching for an event. The filter will match events that satisfy all specified criteria.
input EventsWhere {
aliases: [String!]
city: StringComparison
country: StringComparison
endDate: DateRangeComparison
group: EventGroupWhere
includeArchivedEvents: Boolean
name: StringComparison
office: OfficeWhere
startDate: DateRangeComparison
state: StringComparison
uniqueCodes: [String!]
}
Fields
EventsWhere.aliases
● [String!]
list scalar
Filter events by their alias(es). Optional.
EventsWhere.city
● StringComparison
input
Find events by city. Optional.
EventsWhere.country
● StringComparison
input
Find events by country. Optional.
EventsWhere.endDate
● DateRangeComparison
input
Find events whose end date falls within the specified date range. Optional.
EventsWhere.group
● EventGroupWhere
input
Filter events based on their group. Optional.
EventsWhere.includeArchivedEvents
● Boolean
scalar
A flag indicating whether archived events are included. Optional. Archived events are only included if this field is true
.
EventsWhere.name
● StringComparison
input
Find events by name. Optional.
EventsWhere.office
● OfficeWhere
input
Filter events based on their office. Optional.
EventsWhere.startDate
● DateRangeComparison
input
Find events whose start date falls within the specified date range. Optional.
EventsWhere.state
● StringComparison
input
Find events by state, territory or province. Optional.
EventsWhere.uniqueCodes
● [String!]
list scalar
Filter events by their unique code(s). Optional.
Member Of
FindEventsInput
input