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
toRegistrations
field. - The meeting preferences targeting exhibition bookings can be accessed with the
toExhibitionBookings
field.
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:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(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:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
RegistrationMeetingPreferences.toRegistrations.limit
● PaginationLimit!
non-null scalar
RegistrationMeetingPreferences.toRegistrations.offset
● NonNegativeInt!
non-null scalar
Member Of
Registration
object