FunctionEventAgendaItem
Represents a Function included in an event agenda. To be included in an Agenda, a Function must include a date, start time and end time.
Functions allow the organization and management of any group activities, workshops, meals, etc. at an event which are not part of the Agenda or Sessions set-up.
type FunctionEventAgendaItem implements EventAgendaItem {
backgroundColor: HexColorCode
comment: String
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
date: LocalDate!
details: String
end: LocalTime!
group: FunctionGroup!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
location: Location
name: String!
overview: String
showBoldName: Boolean!
start: LocalTime!
textColor: HexColorCode
tracks: [Track!]!
type: EventAgendaItemType!
uniqueCode: String
}
Fields
FunctionEventAgendaItem.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the function in the agenda. Optional.
FunctionEventAgendaItem.comment
● String
scalar
A UTF-8 string comment for the function. Optional.
FunctionEventAgendaItem.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
FunctionEventAgendaItem.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
FunctionEventAgendaItem.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this function.
CustomFields
can be correlated with a CustomFieldDefinition
through the name
and type
fields.
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
).
FunctionEventAgendaItem.customFields.input
● CustomFieldSearchFilterInput!
non-null input
FunctionEventAgendaItem.customFields.limit
● PaginationLimit!
non-null scalar
FunctionEventAgendaItem.customFields.offset
● NonNegativeInt!
non-null scalar
FunctionEventAgendaItem.date
● LocalDate!
non-null scalar
The date the function will occur.