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(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Author!]!
biography: String
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
documents(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [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.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
Presentation.authors.limit ● PaginationLimit! non-null scalar
Presentation.authors.offset ● NonNegativeInt! non-null scalar
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.
CustomFields and CustomFieldDefinitions 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:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).