FunctionSetup
Defines the settings for functions for an event in EventsAir.
type FunctionSetup {
discountCodes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionDiscountCode!]!
functionGroups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionGroup!]!
functions(
input: FunctionSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Function!]!
}
Fields
FunctionSetup.discountCodes
● [FunctionDiscountCode!]!
non-null object
A list of function registration discount codes defined for this event.
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
).
FunctionSetup.discountCodes.limit
● PaginationLimit!
non-null scalar
FunctionSetup.discountCodes.offset
● NonNegativeInt!
non-null scalar
FunctionSetup.functionGroups
● [FunctionGroup!]!
non-null object
The function groups for this event.
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
).