Skip to main content

RegistrationMeetingPreferences

Represents the different meeting preferences for a registration.

Meeting preferences are split into two separate groups:

  1. The meeting preferences that target other registrations can be accessed with the toRegistrations field.
  2. 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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
RegistrationMeetingPreferences.toRegistrations.limit ● PaginationLimit! non-null scalar
RegistrationMeetingPreferences.toRegistrations.offset ● NonNegativeInt! non-null scalar

Member Of

Registration object