Skip to main content

EventAgendaItemSearchFilterInput

Defines the filter criteria used when searching for agenda items 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 ids and names), fields are applied using an AND operator.

Throws an error with code:

  • BAD_USER_INPUT if all fields in the input have a combined total number of values exceeding 1,000
input EventAgendaItemSearchFilterInput {
ids: [ID!]
names: [String!]
overview: String
tracks: EventAgendaItemTrackSearchFilterInput
uniqueCodes: [String!]
}

Fields

EventAgendaItemSearchFilterInput.ids ● [ID!] list scalar

Filter agenda items based on their identifiers. Optional.

EventAgendaItemSearchFilterInput.names ● [String!] list scalar

Filter agenda items based on their names. Optional.

EventAgendaItemSearchFilterInput.overview ● String scalar

Filter agenda items based on their overview. Optional. The overview filter is applied as a LIKE operator.

EventAgendaItemSearchFilterInput.tracks ● EventAgendaItemTrackSearchFilterInput input

Filter agenda items based on their tracks. Optional.

EventAgendaItemSearchFilterInput.uniqueCodes ● [String!] list scalar

Filter agenda items based on their unique codes. Optional.