Skip to main content

InformationEventAgendaItem

Defines an agenda information block.

type InformationEventAgendaItem implements EventAgendaItem {
backgroundColor: HexColorCode
comment: String
createdAt: DateTime!
createdBy: String
date: LocalDate!
details: String
end: LocalTime!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
overview: String
showBoldName: Boolean!
start: LocalTime!
textColor: HexColorCode
tracks: [Track!]!
type: EventAgendaItemType!
uniqueCode: String
}

Fields

InformationEventAgendaItem.backgroundColor ● HexColorCode scalar

The hex color code to use for the background when rendering the information in the agenda. Optional.

InformationEventAgendaItem.comment ● String scalar

A UTF-8 string comment for the activity/break. Optional.

InformationEventAgendaItem.createdAt ● DateTime! non-null scalar

The date and time the record was created.

InformationEventAgendaItem.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

InformationEventAgendaItem.date ● LocalDate! non-null scalar

The date the information is for.

InformationEventAgendaItem.details ● String scalar

A UTF-8 string that provides a description of the information. It is not displayed publicly and is intended to be used by event organizers. Optional.

InformationEventAgendaItem.end ● LocalTime! non-null scalar

The end time that the information will be displayed at.

InformationEventAgendaItem.id ● ID! non-null scalar

The unique identifier for the information.

InformationEventAgendaItem.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

InformationEventAgendaItem.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

InformationEventAgendaItem.name ● String! non-null scalar

A UTF-8 string representing the information.

InformationEventAgendaItem.overview ● String scalar

A UTF-8 string that provides a brief overview of the information that is displayed in the agenda. Optional.

InformationEventAgendaItem.showBoldName ● Boolean! non-null scalar

A flag indicating whether the name should be bold when rendering the information in the agenda. false by default.

InformationEventAgendaItem.start ● LocalTime! non-null scalar

The start time that the information will be displayed at.

InformationEventAgendaItem.textColor ● HexColorCode scalar

The hex color code to use when rendering the information's text in the agenda. Optional.

InformationEventAgendaItem.tracks ● [Track!]! non-null object

The tracks associated with the information.

If the information is allocated to a single track, the single track will be returned. If the information spans multiple tracks, all tracks that it spans will be returned.

InformationEventAgendaItem.type ● EventAgendaItemType! non-null enum

A value indicating the type of the agenda item. Returns EventAgendaItemType.INFORMATION.

InformationEventAgendaItem.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the information. Optional.

The value must be unique across all information for an event.

Interfaces

EventAgendaItem interface

An item which occupies a timeslot in the agenda.