PresentationSearchFilterInput
Defines the filter criteria used when searching for presentations 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
presentationIds
andpaperNumbers
), fields are applied using anAND
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 PresentationSearchFilterInput {
keywords: PresentationKeywordSearchFilterInput
paperNumbers: [Int!]
paperReferences: [String!]
paperStatus: PresentationPaperStatusSearchFilterInput
presentationIds: [ID!]
session: PresentationSessionSearchFilterInput
subTheme: PresentationSubThemeSearchFilterInput
theme: PresentationThemeSearchFilterInput
title: String
type: PresentationTypeSearchFilterInput
}
Fields
PresentationSearchFilterInput.keywords
● PresentationKeywordSearchFilterInput
input
Filter presentations based on their keywords. Optional.
PresentationSearchFilterInput.paperNumbers
● [Int!]
list scalar
Filter presentations based on their paper numbers. Optional.
PresentationSearchFilterInput.paperReferences
● [String!]
list scalar
Filter presentations based on their paper references. Optional.
PresentationSearchFilterInput.paperStatus
● PresentationPaperStatusSearchFilterInput
input
Filter presentations based on their paperStatus. Optional.
PresentationSearchFilterInput.presentationIds
● [ID!]
list scalar
Filter presentations based on their identifiers. Optional.
PresentationSearchFilterInput.session
● PresentationSessionSearchFilterInput
input
Filter presentations based on their session. Optional.
PresentationSearchFilterInput.subTheme
● PresentationSubThemeSearchFilterInput
input
Filter presentations based on their subtheme. Optional.
PresentationSearchFilterInput.theme
● PresentationThemeSearchFilterInput
input
Filter presentations based on their theme. Optional.
PresentationSearchFilterInput.title
● String
scalar
Filter presentations based on their title. Optional.
PresentationSearchFilterInput.type
● PresentationTypeSearchFilterInput
input
Filter presentations based on their type. Optional.