INPUT_OBJECT

CampaignCreateInput

link GraphQL Schema definition

1input CampaignCreateInput {
2
3name: String!
4
5status: Status!
6
7store: StoreInput!
8
9# Exactly one input field should be provided
10addMarkets: [MarketInput!]
11
12# Exactly one input field should be provided
13addPricelists: [PricelistInput!]
14
15# Delivery windows are accepted only for wholesale stores.
16#
17# Exactly one input field should be provided
18addDeliveryWindows: [DeliveryWindowInput!]
19}

link Required by