CreateEventLocationInput
Defines the input for creating a new location for an event.
input CreateEventLocationInput {
allowCheckInForEventStream: Boolean
comment: String
eventId: ID!
name: String!
uniqueCode: String
}
Fields
CreateEventLocationInput.allowCheckInForEventStream
● Boolean
scalar
A flag indicating whether the location can be used for an EventStream check in. Optional.
The default value is false
.
CreateEventLocationInput.comment
● String
scalar
A UTF-8 string comment for the location. Optional.
CreateEventLocationInput.eventId
● ID!
non-null scalar
The identifier of the event the location is associated with.
CreateEventLocationInput.name
● String!
non-null scalar
A UTF-8 string representing the name of the location.
CreateEventLocationInput.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the location. Optional.
The value must be unique across all locations for an event.
Member Of
createEventLocation
mutation