CreatePresentationInput
Defines the input for creating a presentation.
input CreatePresentationInput {
affiliations: [CreatePresentationAuthorAffiliationInput!]
attachedDocumentIds: [ID!] @deprecated
attachedDocuments: [CreatePresentationAttachedDocumentInput!]
authors: [CreatePresentationAuthorInput!]
automaticallyAssignPaperNumber: Boolean
biography: String
customFields: [CustomFieldInput!]
end: LocalTime
eventId: ID!
keywordIds: [ID!]
order: NonNegativeInt
paperNumber: NonNegativeInt!
paperReference: String
paperStatusId: ID
presentationTypeId: ID
presenterId: ID!
questionTime: NonNegativeInt
sessionId: ID
start: LocalTime
subThemeId: ID
themeId: ID
title: String!
}
Fields
CreatePresentationInput.affiliations
● [CreatePresentationAuthorAffiliationInput!]
list input
The author affiliations to create with the presentation. Optional.
CreatePresentationInput.attachedDocumentIds
● [ID!]
deprecated list scalar
Use attachedDocuments
instead. This input field will be removed in a future release.
The identifiers of the documents to associate with the presentation. Optional.
Rules:
- Only one of
attachedDocuments
andattachedDocumentIds
should be specified. - The
attachedDocuments
input field will take precedence overattachedDocumentIds
.
CreatePresentationInput.attachedDocuments
● [CreatePresentationAttachedDocumentInput!]
list input
The attached documents to create with the presentation. Optional.
Rules:
- Only one of
attachedDocuments
andattachedDocumentIds
should be specified. - The
attachedDocuments
input field will take precedence overattachedDocumentIds
.
CreatePresentationInput.authors
● [CreatePresentationAuthorInput!]
list input
The authors to create with the presentation. Optional.
CreatePresentationInput.automaticallyAssignPaperNumber
● Boolean
scalar
A flag indicating whether the paper number will be assigned automatically. Optional.
If true
, the paperNumber
field will be ignored.
Warning: creating multiple presentations asynchronously might assign the same paper number to multiple presentations.
CreatePresentationInput.biography
● String
scalar
A UTF-8 string that represents the biography of the contact presenting the presentation. Optional.
CreatePresentationInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for the presentation. Optional.
CreatePresentationInput.end
● LocalTime
scalar
The time the presentation will end. Optional.
CreatePresentationInput.eventId
● ID!
non-null scalar
The identifier of the event the presentation is associated with.
CreatePresentationInput.keywordIds
● [ID!]
list scalar
The identifiers of the keywords to associate with the presentation. Optional.
CreatePresentationInput.order
● NonNegativeInt
scalar
The order the presentation will be presented within the session. Optional.
CreatePresentationInput.paperNumber
● NonNegativeInt!
non-null scalar
The paper's number.
Will default to 0
if not specified.
CreatePresentationInput.paperReference
● String
scalar
A UTF-8 string representing a reference to a paper. Optional.
CreatePresentationInput.paperStatusId
● ID
scalar
The status of the presentation. Optional.
CreatePresentationInput.presentationTypeId
● ID
scalar
The identifier of the presentation type. Optional.
CreatePresentationInput.presenterId
● ID!
non-null scalar
The identifier of the contact who conducts the presentation.
CreatePresentationInput.questionTime
● NonNegativeInt
scalar
The duration, in minutes, of any question time allowed for the presentation. Optional.
CreatePresentationInput.sessionId
● ID
scalar
The identifier of the session the presentation is scheduled to run in. Optional.
CreatePresentationInput.start
● LocalTime
scalar
The time the presentation will start. Optional.
CreatePresentationInput.subThemeId
● ID
scalar
The identifier of the sub-theme for the presentation. Optional.
Rules:
- If this has a value, then
themeId
needs to have a value as well. - The sub-theme must be related to the specified theme.
CreatePresentationInput.themeId
● ID
scalar
The identifier of the theme for the presentation. Optional.
CreatePresentationInput.title
● String!
non-null scalar
A UTF-8 string representing the title of a presentation.
Member Of
createPresentation
mutation