EventMarketingSetup
Defines the settings for marketing tags within the scope of an event.
type EventMarketingSetup {
groups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingGroup!]!
tags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingTag!]!
}
Fields
EventMarketingSetup.groups ● [EventMarketingGroup!]! non-null object
A list of marketing groups defined for an 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).
EventMarketingSetup.groups.limit ● PaginationLimit! non-null scalar
EventMarketingSetup.groups.offset ● NonNegativeInt! non-null scalar
EventMarketingSetup.tags ● [EventMarketingTag!]! non-null object
A list of marketing tags defined for an 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).
EventMarketingSetup.tags.limit ● PaginationLimit! non-null scalar
EventMarketingSetup.tags.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object