UpdateExhibitionBookingInput
Defines the input details for updating an exhibition booking for an exhibitor.
input UpdateExhibitionBookingInput {
bookedOn: LocalDate
construction: ExhibitionConstructionType
customFields: [CustomFieldInput!]
eventId: ID!
exhibitionBookingId: ID!
exhibitorId: ID!
paymentDetails: UpdatePaymentDetailsInput
standId: ID
standTypeId: ID!
}
Fields
UpdateExhibitionBookingInput.bookedOn
● LocalDate
scalar
The date the exhibition is booked. Optional.
UpdateExhibitionBookingInput.construction
● ExhibitionConstructionType
enum
The type of construction requested when the exhibition was booked. Optional.
UpdateExhibitionBookingInput.customFields
● [CustomFieldInput!]
list input
The custom fields to update or create for the exhibition booking. Optional.
UpdateExhibitionBookingInput.eventId
● ID!
non-null scalar
The identifier of the event the exhibition booking is associated with.
UpdateExhibitionBookingInput.exhibitionBookingId
● ID!
non-null scalar
The identifier of the exhibition booking.
UpdateExhibitionBookingInput.exhibitorId
● ID!
non-null scalar
The exhibitor who booked the exhibition booking.
UpdateExhibitionBookingInput.paymentDetails
● UpdatePaymentDetailsInput
input
The payment details for the exhibition booking. Optional.
UpdateExhibitionBookingInput.standId
● ID
scalar
The stand number that is booked. Optional.
UpdateExhibitionBookingInput.standTypeId
● ID!
non-null scalar
The type of stand that is booked.
Member Of
updateExhibitionBooking
mutation