CreateSessionBlockInput
Defines the input for creating a concurrent session block.
input CreateSessionBlockInput {
date: LocalDate
doNotShowNameInAgenda: Boolean
end: LocalTime
eventId: ID!
name: String!
start: LocalTime
uniqueCode: String
}
Fields
CreateSessionBlockInput.date ● LocalDate scalar
The date the session block will occur. Optional.
CreateSessionBlockInput.doNotShowNameInAgenda ● Boolean scalar
A flag indicating whether the name of the session block should not be shown in the agenda. Optional.
The default value is false.
CreateSessionBlockInput.end ● LocalTime scalar
The time the session block will end. Optional.
CreateSessionBlockInput.eventId ● ID! non-null scalar
The identifier of the event the session block is associated with.
CreateSessionBlockInput.name ● String! non-null scalar
A UTF-8 string representing the name of the session block.
The value must be unique across all session blocks for an event.
CreateSessionBlockInput.start ● LocalTime scalar
The time the session block will start. Optional.
CreateSessionBlockInput.uniqueCode ● String scalar
A customer supplied, UTF-8 string value that represents a unique code for the session block. Optional.
The value must be unique across all session blocks for an event.
Member Of
createSessionBlock mutation