Skip to main content

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(
input: CourseSearchFilterInput! = [object Object]
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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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.

See CourseSearchFilterInput for details on how the optional input argument can be used to filter course.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventCourseSetup.courses.input ● CourseSearchFilterInput! non-null input
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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventCourseSetup.subClassifications.limit ● PaginationLimit! non-null scalar
EventCourseSetup.subClassifications.offset ● NonNegativeInt! non-null scalar

Member Of

EventSetup object