CreateRegistrationToExhibitionBookingMeetingRequestInput
Defines the input to create a meeting request from a registration to an exhibition booking.
input CreateRegistrationToExhibitionBookingMeetingRequestInput {
eventId: ID!
fromRegistrationId: ID!
meetingDiaryId: ID!
notes: String
timeSlotId: ID!
toExhibitionBookingId: ID!
}
Fields
CreateRegistrationToExhibitionBookingMeetingRequestInput.eventId
● ID!
non-null scalar
The ID of the event the registration belongs to.
CreateRegistrationToExhibitionBookingMeetingRequestInput.fromRegistrationId
● ID!
non-null scalar
The ID of the registration the meeting request originates from.
CreateRegistrationToExhibitionBookingMeetingRequestInput.meetingDiaryId
● ID!
non-null scalar
The ID of the meeting diary the meeting belongs to.
CreateRegistrationToExhibitionBookingMeetingRequestInput.notes
● String
scalar
The notes to associate with the meeting request. Optional.
CreateRegistrationToExhibitionBookingMeetingRequestInput.timeSlotId
● ID!
non-null scalar
The ID of the time slot to use to create the meeting request.
CreateRegistrationToExhibitionBookingMeetingRequestInput.toExhibitionBookingId
● ID!
non-null scalar
The ID of the exhibition booking the meeting request targets.
Member Of
createRegistrationToExhibitionBookingMeetingRequest
mutation