Presentation
Presentation identifies an event session which will feature a guest speaker or presenter, and offers a way to capture relevant information.
type Presentation {
abstractPage: NonNegativeInt
affiliations: [AuthorAffiliation!]!
authorListPage: NonNegativeInt
authors: [Author!]!
biography: String
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
documents: [AttachedDocument!]!
end: LocalTime
id: ID!
keywords: [PresentationKeyword!]!
lastModifiedAt: DateTime!
lastModifiedBy: String
notes: String
order: NonNegativeInt
paperNumber: NonNegativeInt!
paperReference: String
paperStatus: PresentationPaperStatus
posterBoard: String
presenter: Contact!
questionTime: NonNegativeInt
session: Session
start: LocalTime
subTheme: PresentationSubTheme
theme: PresentationTheme
title: String!
type: PresentationType
}
Fields
Presentation.abstractPage
● NonNegativeInt
scalar
The abstract page number. Optional.
Presentation.affiliations
● [AuthorAffiliation!]!
non-null object
A list of affiliations.
Presentation.authorListPage
● NonNegativeInt
scalar
The author list page number. Optional.
Presentation.authors
● [Author!]!
non-null object
A list of authors.
Presentation.biography
● String
scalar
A UTF-8 string that represents the biography of the contact presenting the presentation. Optional.
Presentation.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
Presentation.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
Presentation.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this presentation.
CustomField
s and CustomFieldDefinition
s can be matched through the definitionId
and id
fields, respectively.
See CustomFieldSearchFilterInput
for details on how the optional input
argument can be used to filter custom fields.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
Presentation.customFields.input
● CustomFieldSearchFilterInput!
non-null input
Presentation.customFields.limit
● PaginationLimit!
non-null scalar
Presentation.customFields.offset
● NonNegativeInt!
non-null scalar
Presentation.documents
● [AttachedDocument!]!
non-null interface
A list of documents supplied for the presentation.
Presentation.end
● LocalTime
scalar
The time the presentation will end. Optional.
Presentation.id
● ID!
non-null scalar
The unique identifier for a presentation.
Presentation.keywords
● [PresentationKeyword!]!
non-null object
A list of keywords associated with the presentation.
Presentation.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
Presentation.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
Presentation.notes
● String
scalar
A UTF-8 string representing any notes captured for the presentation. Optional.
Presentation.order
● NonNegativeInt
scalar
The order the presentation will be presented within the session. Optional.
Presentation.paperNumber
● NonNegativeInt!
non-null scalar
The paper's number. 0
by default.
Presentation.paperReference
● String
scalar
A UTF-8 string representing a reference to a paper. Optional.
Presentation.paperStatus
● PresentationPaperStatus
object
The status of the presentation. Optional.
Presentation.posterBoard
● String
scalar
A UTF-8 string representing a reference to a poster board. Optional.
Presentation.presenter
● Contact!
non-null object
The contact who conducts the presentation.
Presentation.questionTime
● NonNegativeInt
scalar
The duration, in minutes, of any question time allowed for the presentation. Optional.
Presentation.session
● Session
object
The session the presentation is scheduled to run in. Optional.
Presentation.start
● LocalTime
scalar
The time the presentation will start. Optional.
Presentation.subTheme
● PresentationSubTheme
object
The subtheme of the presentation. Optional.
Presentation.theme
● PresentationTheme
object
The theme of the presentation. Optional.
Presentation.title
● String!
non-null scalar
A UTF-8 string representing the title of a presentation.
Presentation.type
● PresentationType
object
The type of the presentation. Optional.
Member Of
Contact
object ● CreatePresentationPayload
object ● Event
object ● Session
object ● SessionAttendanceAgendaItem
object ● SessionEventAgendaItem
object ● UpdatePresentationPayload
object