RegistrationMeetingPreferences
Represents the different meeting preferences for a registration.
Meeting preferences are split into two separate groups:
- The meeting preferences that target other registrations can be accessed with the
toRegistrationsfield. - The meeting preferences targeting exhibition bookings can be accessed with the
toExhibitionBookingsfield.
type RegistrationMeetingPreferences {
toExhibitionBookings(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationToExhibitionBookingMeetingPreference!]!
toRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationToRegistrationMeetingPreference!]!
}
Fields
RegistrationMeetingPreferences.toExhibitionBookings ● [RegistrationToExhibitionBookingMeetingPreference!]! non-null object
The meeting preferences for this registration that target exhibition bookings.
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).
RegistrationMeetingPreferences.toExhibitionBookings.limit ● PaginationLimit! non-null scalar
RegistrationMeetingPreferences.toExhibitionBookings.offset ● NonNegativeInt! non-null scalar
RegistrationMeetingPreferences.toRegistrations ● [RegistrationToRegistrationMeetingPreference!]! non-null object
The meeting preferences for this registration that target other registrations.
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).
RegistrationMeetingPreferences.toRegistrations.limit ● PaginationLimit! non-null scalar
RegistrationMeetingPreferences.toRegistrations.offset ● NonNegativeInt! non-null scalar
Member Of
Registration object