Skip to main content

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
checklist: [AppliedChecklistItem!]!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]! @deprecated
customFieldsPaged(
filterInput: CustomFieldAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): CustomFieldPage!
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:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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.checklist ● [AppliedChecklistItem!]! non-null object​

The list of checklist item details for the presentation.

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!]! deprecated non-null object​

DEPRECATED

Use customFieldsPaged instead. It returns the same custom fields together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.

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:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
Presentation.customFields.input ● CustomFieldSearchFilterInput! non-null input​
Presentation.customFields.limit ● PaginationLimit! non-null scalar​
Presentation.customFields.offset ● NonNegativeInt! non-null scalar​

Presentation.customFieldsPaged ● CustomFieldPage! non-null object​

Custom fields associated with this record that match the filter criteria specified in the optional filterInput argument, returned together with pagination metadata.

See CustomFieldAdvancedSearchFilterInput for details on how the filterInput argument can be used. The filter supports both inclusion and exclusion semantics (eq, ne, in, notIn).

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).

Throws an error with code:

  • BAD_USER_INPUT if all fields in the filterInput argument have a combined total number of values exceeding 1,000.
Presentation.customFieldsPaged.filterInput ● CustomFieldAdvancedSearchFilterInput! non-null input​
Presentation.customFieldsPaged.limit ● PaginationLimit! non-null scalar​
Presentation.customFieldsPaged.offset ● NonNegativeInt! non-null scalar​

Presentation.documents ● [AttachedDocument!]! non-null interface​

A list of documents supplied for the presentation.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
Presentation.documents.limit ● PaginationLimit! non-null scalar​
Presentation.documents.offset ● NonNegativeInt! non-null scalar​

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 ● PresentationPage object ● Session object ● SessionAttendanceAgendaItem object ● SessionEventAgendaItem object ● UpdatePresentationPayload object