Function
Functions allow the organization and management of any group activities, meals, etc. at an event which are not part of the Agenda or Sessions set-up.
type Function {
attendances(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionAttendance!]!
backgroundColor: HexColorCode
checkInViaOrganizerAppEnabled: Boolean!
checkOutViaOrganizerAppEnabled: Boolean!
comment: String
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
date: LocalDate
details: String
doNotPublishToAttendeeApp: Boolean!
doNotPublishToEventWebsite: Boolean!
doNotPublishToMyAgenda: Boolean!
doNotPublishToOnAir: Boolean!
end: LocalTime
endsOnNextDay: Boolean!
expectedAttendees: Int
feeTypes(
input: FunctionFeeTypeSearchFilterInput! = [object Object]
): [FunctionFeeType!]!
foodAndBeverage: String
group: FunctionGroup!
guestType: FunctionGuestType!
id: ID!
inventoryLimit: PositiveInt
lastModifiedAt: DateTime!
lastModifiedBy: String
location: Location
name: String!
overview: String
registrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionRegistration!]!
roomSetup: String
showBoldTitle: Boolean!
start: LocalTime
textColor: HexColorCode
tracks: [Track!]!
uniqueCode: String
}
Fields
Function.attendances ● [FunctionAttendance!]! non-null object
A list of attendances for this function.
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).
Function.attendances.limit ● PaginationLimit! non-null scalar
Function.attendances.offset ● NonNegativeInt! non-null scalar
Function.backgroundColor ● HexColorCode scalar
The hex color code to use for the background when rendering the function in the agenda. Optional.
Function.checkInViaOrganizerAppEnabled ● Boolean! non-null scalar
A flag indicating whether check in for the function is enabled via scanning in the Organizer App.
Function.checkOutViaOrganizerAppEnabled ● Boolean! non-null scalar
A flag indicating whether check out for the function is enabled via scanning in the Organizer App.
Function.comment ● String scalar
A UTF-8 string comment for the function. Optional.