EventMarketingSetup
Defines the settings for marketing tags within the scope of an event.
type EventMarketingSetup {
groups(
input: EventMarketingGroupSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingGroup!]!
tags(
input: EventMarketingTagSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingTag!]!
}
Fields
EventMarketingSetup.groups ● [EventMarketingGroup!]! non-null object
A list of marketing groups defined for an event.
See EventMarketingGroupSearchFilterInput
for details on how the optional input argument can be used to filter marketing groups.
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.input ● EventMarketingGroupSearchFilterInput! non-null input
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.
See EventMarketingTagSearchFilterInput
for details on how the optional input argument can be used to filter marketing tags.
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.input ● EventMarketingTagSearchFilterInput! non-null input
EventMarketingSetup.tags.limit ● PaginationLimit! non-null scalar
EventMarketingSetup.tags.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object