CreatePresentationKeywordInput
Defines the input for creating a presentation keyword.
input CreatePresentationKeywordInput {
backgroundColor: HexColorCode
enableColorCoding: Boolean!
eventId: ID!
name: String!
showBoldName: Boolean
textColor: HexColorCode
uniqueCode: String
}
Fields
CreatePresentationKeywordInput.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.
CreatePresentationKeywordInput.enableColorCoding
● Boolean!
non-null scalar
A flag indicating whether color coding is enabled for the presentation keyword.
CreatePresentationKeywordInput.eventId
● ID!
non-null scalar
The identifier of the event the presentation keyword is associated with.
CreatePresentationKeywordInput.name
● String!
non-null scalar
A UTF-8 string representing the name of the presentation keyword.
The value must be unique across all presentation keywords for an event.
CreatePresentationKeywordInput.showBoldName
● Boolean
scalar
A flag indicating whether the name should be bold when rendering the presentation keyword. Optional.
The default value is false.
CreatePresentationKeywordInput.textColor
● HexColorCode
scalar
The hex color code to use when rendering the presentation keyword's text. Optional.
The default value is #FFFFFF.
CreatePresentationKeywordInput.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
createPresentationKeyword
mutation