SponsorshipSetup
Defines the settings for sponsorships for an event in EventsAir.
type SponsorshipSetup {
additionalCharges: [AdditionalCharge!]!
checklist: [ChecklistItem!]!
documentTypes: [DocumentType!]!
inclusions(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Inclusion!]!
preferences: SponsorshipPreferences!
sponsorshipPackages(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [SponsorshipPackage!]! @deprecated
sponsorshipPackagesPaged(
filterInput: SponsorshipPackageAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): SponsorshipPackagePage!
}
Fields
SponsorshipSetup.additionalCharges ● [AdditionalCharge!]! non-null object
The list of available additional charges for the sponsorship.
SponsorshipSetup.checklist ● [ChecklistItem!]! non-null object
The list of checklist items for sponsorships.
SponsorshipSetup.documentTypes ● [DocumentType!]! non-null interface
The types of documents defined for a sponsorship.
SponsorshipSetup.inclusions ● [Inclusion!]! non-null object
A list of inclusions available to add to sponsorship packages and sponsorships for this event.
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).
SponsorshipSetup.inclusions.limit ● PaginationLimit! non-null scalar
SponsorshipSetup.inclusions.offset ● NonNegativeInt! non-null scalar
SponsorshipSetup.preferences ● SponsorshipPreferences! non-null object
The configuration preferences for sponsorship.
SponsorshipSetup.sponsorshipPackages ● [SponsorshipPackage!]! deprecated non-null object
Use sponsorshipPackagesPaged instead. It returns the same sponsorship packages together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.
A list of sponsorship packages available for this event.
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).
SponsorshipSetup.sponsorshipPackages.limit ● PaginationLimit! non-null scalar
SponsorshipSetup.sponsorshipPackages.offset ● NonNegativeInt! non-null scalar
SponsorshipSetup.sponsorshipPackagesPaged ● SponsorshipPackagePage! non-null object
Sponsorship packages for this event that match the filter criteria specified in the optional
filterInput argument, returned together with pagination metadata.
Returns a SponsorshipPackagePage wrapper exposing the matched items alongside pageInfo
(total count, has-next-page, has-previous-page).
See SponsorshipPackageAdvancedSearchFilterInput
for details on how the filterInput argument can be used. The filter supports both inclusion and
exclusion semantics (eq, ne, in, notIn) — for example, "all sponsorship packages whose
name contains gold."
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).
Throws an error with code: BAD_USER_INPUT if all fields in the filterInput argument have a
combined total number of values exceeding 1,000.
SponsorshipSetup.sponsorshipPackagesPaged.filterInput ● SponsorshipPackageAdvancedSearchFilterInput! non-null input
SponsorshipSetup.sponsorshipPackagesPaged.limit ● PaginationLimit! non-null scalar
SponsorshipSetup.sponsorshipPackagesPaged.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object