UpdatePresentationKeywordInput
Defines the input for updating a presentation keyword.
input UpdatePresentationKeywordInput {
backgroundColor: HexColorCode
enableColorCoding: Boolean
eventId: ID!
keywordId: ID!
name: String
showBoldName: Boolean
textColor: HexColorCode
uniqueCode: String
}
Fields
UpdatePresentationKeywordInput.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the function in the agenda. Optional.
The value will default to #376092.
UpdatePresentationKeywordInput.enableColorCoding
● Boolean
scalar
A flag indicating whether color coding is enabled for the presentation keyword. Optional.
UpdatePresentationKeywordInput.eventId
● ID!
non-null scalar
The identifier of the event the presentation keyword is associated with.
UpdatePresentationKeywordInput.keywordId
● ID!
non-null scalar
The identifier for the presentation keyword.
UpdatePresentationKeywordInput.name
● String
scalar
A UTF-8 string representing the name of the presentation keyword. Optional.
The value must be unique across all presentation keywords for an event.
UpdatePresentationKeywordInput.showBoldName
● Boolean
scalar
A flag indicating whether the name should be bold when rendering the presentation keyword. Optional.
The default value is false.
UpdatePresentationKeywordInput.textColor
● HexColorCode
scalar
The hex color code to use when rendering the presentation keyword's text. Optional.
The default value is #FFFFFF.
UpdatePresentationKeywordInput.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the presentation keyword. Optional.
The value must be unique across all presentation keywords for an event.
Member Of
updatePresentationKeyword
mutation