CeContactStoreFunction
Functions allow the organization and management of any group activities, meals, etc. in a continuing education contact store.
type CeContactStoreFunction {
attendances(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreFunctionAttendance!]!
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
feeTypes(
input: FunctionFeeTypeSearchFilterInput! = [object Object]
): [FunctionFeeType!]!
functionRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreFunctionRegistration!]!
group: FunctionGroup!
guestType: FunctionGuestType!
id: ID!
inventoryLimit: PositiveInt
lastModifiedAt: DateTime!
lastModifiedBy: String
location: Location
name: String!
overview: String
showBoldTitle: Boolean!
start: LocalTime
textColor: HexColorCode
tracks: [Track!]!
uniqueCode: String
}
Fields
CeContactStoreFunction.attendances
● [CeContactStoreFunctionAttendance!]!
non-null object
A list of attendances for this function.
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
).
CeContactStoreFunction.attendances.limit
● PaginationLimit!
non-null scalar
CeContactStoreFunction.attendances.offset
● NonNegativeInt!
non-null scalar
CeContactStoreFunction.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the function. Optional.
CeContactStoreFunction.comment
● String
scalar
A UTF-8 string comment for the function. Optional.
CeContactStoreFunction.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
CeContactStoreFunction.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
CeContactStoreFunction.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this function.
CustomField
s and CustomFieldDefinition
s 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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
CeContactStoreFunction.customFields.input
● CustomFieldSearchFilterInput!
non-null input
CeContactStoreFunction.customFields.limit
● PaginationLimit!
non-null scalar
CeContactStoreFunction.customFields.offset
● NonNegativeInt!
non-null scalar
CeContactStoreFunction.date
● LocalDate
scalar
The date the function will occur. Optional.
CeContactStoreFunction.details
● String
scalar
A UTF-8 string that provides a description of the function. Optional.
CeContactStoreFunction.end
● LocalTime
scalar
The time the function will end. Optional.
CeContactStoreFunction.feeTypes
● [FunctionFeeType!]!
non-null object
A list of fee types associated with this function.
See FunctionFeeTypeSearchFilterInput
for details on how the optional input
argument can be used to filter functions.
CeContactStoreFunction.feeTypes.input
● FunctionFeeTypeSearchFilterInput!
non-null input
CeContactStoreFunction.functionRegistrations
● [CeContactStoreFunctionRegistration!]!
non-null object
A list of registrations for this function.
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
).
CeContactStoreFunction.functionRegistrations.limit
● PaginationLimit!
non-null scalar
CeContactStoreFunction.functionRegistrations.offset
● NonNegativeInt!
non-null scalar
CeContactStoreFunction.group
● FunctionGroup!
non-null object
The function group this function belongs to.
CeContactStoreFunction.guestType
● FunctionGuestType!
non-null enum
The guest type for for the function.
CeContactStoreFunction.id
● ID!
non-null scalar
The unique identifier for a function.
CeContactStoreFunction.inventoryLimit
● PositiveInt
scalar
The inventory limit for this Function. Optional.
CeContactStoreFunction.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
CeContactStoreFunction.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
CeContactStoreFunction.location
● Location
object
The location for the function. Optional.
CeContactStoreFunction.name
● String!
non-null scalar
A UTF-8 string representing the name of a function.
CeContactStoreFunction.overview
● String
scalar
A UTF-8 string that provides a brief overview of the function. Optional.
CeContactStoreFunction.showBoldTitle
● Boolean!
non-null scalar
A Boolean value indicating whether the title should be bold when rendering the function. false
by default.
CeContactStoreFunction.start
● LocalTime
scalar
The time the function will start. Optional.
CeContactStoreFunction.textColor
● HexColorCode
scalar
The hex color code to use when rendering the function's text. Optional.
CeContactStoreFunction.tracks
● [Track!]!
non-null object
The tracks associated with the function.
If a function is allocated to a single track, the single track will be returned. If a function spans multiple tracks, all tracks that it spans will be returned.
CeContactStoreFunction.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the function. Optional.
The value must be unique across all functions for an event.
Member Of
CeContactStoreFunctionRegistration
object ● CeContactStoreFunctionSetup
object