EventMeetingPreferences
Represents the different meeting preferences for an event.
Meeting preferences are split into three separate groups:
- The meeting preferences from an exhibition booking to a registration are exposed through the
fromExhibitionBookingToRegistrationfield. - The meeting preferences from a registration to an exhibition booking can be accessed with the
fromRegistrationToExhibitionBookingfield. - The meeting preferences from a registration to another registration are accessible with the
fromRegistrationToRegistrationfield.
type EventMeetingPreferences {
fromExhibitionBookingToRegistration(
input: FromExhibitionBookingToRegistrationMeetingPreferencesSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionBookingToRegistrationMeetingPreference!]!
fromRegistrationToExhibitionBooking(
input: FromRegistrationToExhibitionBookingMeetingPreferencesSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationToExhibitionBookingMeetingPreference!]!
fromRegistrationToRegistration(
input: FromRegistrationToRegistrationMeetingPreferencesSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationToRegistrationMeetingPreference!]!
}
Fields
EventMeetingPreferences.fromExhibitionBookingToRegistration ● [ExhibitionBookingToRegistrationMeetingPreference!]! non-null object
The meeting preferences from an exhibition to a registration.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
EventMeetingPreferences.fromExhibitionBookingToRegistration.input ● FromExhibitionBookingToRegistrationMeetingPreferencesSearchFilterInput! non-null input
EventMeetingPreferences.fromExhibitionBookingToRegistration.limit ● PaginationLimit! non-null scalar
EventMeetingPreferences.fromExhibitionBookingToRegistration.offset ● NonNegativeInt! non-null scalar
EventMeetingPreferences.fromRegistrationToExhibitionBooking ● [RegistrationToExhibitionBookingMeetingPreference!]! non-null object
The meeting preferences from a registration to an exhibition booking.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
EventMeetingPreferences.fromRegistrationToExhibitionBooking.input ● FromRegistrationToExhibitionBookingMeetingPreferencesSearchFilterInput! non-null input
EventMeetingPreferences.fromRegistrationToExhibitionBooking.limit ● PaginationLimit! non-null scalar
EventMeetingPreferences.fromRegistrationToExhibitionBooking.offset ● NonNegativeInt! non-null scalar
EventMeetingPreferences.fromRegistrationToRegistration ● [RegistrationToRegistrationMeetingPreference!]! non-null object
The meeting preferences from a registration to another registration.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
EventMeetingPreferences.fromRegistrationToRegistration.input ● FromRegistrationToRegistrationMeetingPreferencesSearchFilterInput! non-null input
EventMeetingPreferences.fromRegistrationToRegistration.limit ● PaginationLimit! non-null scalar
EventMeetingPreferences.fromRegistrationToRegistration.offset ● NonNegativeInt! non-null scalar
Member Of
Event object