UpdateSessionBlockInput
Defines the input for updating a concurrent session block.
input UpdateSessionBlockInput {
date: LocalDate
doNotShowNameInAgenda: Boolean
end: LocalTime
eventId: ID!
name: String
sessionBlockId: ID!
start: LocalTime
uniqueCode: String
}
Fields
UpdateSessionBlockInput.date
● LocalDate
scalar
The date the session block will occur. Optional.
UpdateSessionBlockInput.doNotShowNameInAgenda
● Boolean
scalar
A flag indicating whether the name of the session block should not be shown in the agenda. Optional.
UpdateSessionBlockInput.end
● LocalTime
scalar
The time the session block will end. Optional.
UpdateSessionBlockInput.eventId
● ID!
non-null scalar
The identifier of the event the session block is associated with.
UpdateSessionBlockInput.name
● String
scalar
A UTF-8 string representing the name of the session block. Optional.
The value must be unique across all session blocks for an event.
UpdateSessionBlockInput.sessionBlockId
● ID!
non-null scalar
The identifier for the session block.
UpdateSessionBlockInput.start
● LocalTime
scalar
The time the session block will start. Optional.
UpdateSessionBlockInput.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
updateSessionBlock
mutation