INPUT_OBJECT

DisplayCreateInput

link GraphQL Schema definition

1input DisplayCreateInput {
2
3store: StoreInput!
4
5# Exactly one input field should be provided
6product: ProductInput!
7
8name: String!
9
10status: Status!
11
12# If not provided, it will be auto-generated based on display name.
13uri: String
14
15minimumOrderQuantity: Int
16
17orderQuantityDenominator: Int
18
19description: String
20
21shortDescription: String
22
23metaTitle: String
24
25metaDescription: String
26
27metaKeywords: String
28
29comment: String
30
31tags: [String!]
32
33canonicalCategory: CategoryInput
34
35addCategories: [CategoryInput!]
36
37# Exactly one input field should be provided
38addMarkets: [MarketInput!]
39
40addProductMedia: [ProductMediaAddInput!]
41
42addProductVariants: [ProductVariantAddInput!]
43
44taxGroup: TaxGroupInput
45}

link Required by