INPUT_OBJECT

DisplayUpdateInput

link GraphQL Schema definition

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

link Required by