EventCourseSetup
Defines the settings for courses for an event in EventsAir.
type EventCourseSetup {
classificationTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CourseClassificationType!]!
classifications(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CourseClassification!]!
courses(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventCourse!]!
creditTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CourseCreditType!]!
discountCodes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CourseDiscountCode!]!
preferences: CoursePreferences!
subClassifications(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CourseSubClassification!]!
}
Fields
EventCourseSetup.classificationTypes
● [CourseClassificationType!]!
non-null object
A list of course classification types associated with 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
).
EventCourseSetup.classificationTypes.limit
● PaginationLimit!
non-null scalar
EventCourseSetup.classificationTypes.offset
● NonNegativeInt!
non-null scalar
EventCourseSetup.classifications
● [CourseClassification!]!
non-null object
A list of course classifications associated with 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
).
EventCourseSetup.classifications.limit
● PaginationLimit!
non-null scalar
EventCourseSetup.classifications.offset
● NonNegativeInt!
non-null scalar
EventCourseSetup.courses
● [EventCourse!]!
non-null object
A list of courses associated with 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
).
EventCourseSetup.courses.limit
● PaginationLimit!
non-null scalar
EventCourseSetup.courses.offset
● NonNegativeInt!
non-null scalar
EventCourseSetup.creditTypes
● [CourseCreditType!]!
non-null object
A list of course credit types associated with 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
).
EventCourseSetup.creditTypes.limit
● PaginationLimit!
non-null scalar
EventCourseSetup.creditTypes.offset
● NonNegativeInt!
non-null scalar
EventCourseSetup.discountCodes
● [CourseDiscountCode!]!
non-null object
A list of course 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
).
EventCourseSetup.discountCodes.limit
● PaginationLimit!
non-null scalar
EventCourseSetup.discountCodes.offset
● NonNegativeInt!
non-null scalar
EventCourseSetup.preferences
● CoursePreferences!
non-null object
The configuration preferences for a course.
EventCourseSetup.subClassifications
● [CourseSubClassification!]!
non-null object
A list of course sub classifications associated with 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
).
EventCourseSetup.subClassifications.limit
● PaginationLimit!
non-null scalar
EventCourseSetup.subClassifications.offset
● NonNegativeInt!
non-null scalar
Member Of
EventSetup
object