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
fromExhibitionBookingToRegistration
field. - The meeting preferences from a registration to an exhibition booking can be accessed with the
fromRegistrationToExhibitionBooking
field. - The meeting preferences from a registration to another registration are accessible with the
fromRegistrationToRegistration
field.
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:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(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:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(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:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(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