INPUT_OBJECT
DisplayCreateInput
link GraphQL Schema definition
1 input DisplayCreateInput { 2 3 : StoreInput! 4 5 # Exactly one input field should be provided 6 : ProductInput! 7 8 : String! 9 10 : Status! 11 12 # If not provided, it will be auto-generated based on display name. 13 : String 14 15 : Int 16 17 : Int 18 19 : String 20 21 : String 22 23 : String 24 25 : String 26 27 : String 28 29 : String 30 31 : [String!] 32 33 : CategoryInput 34 35 : [CategoryInput!] 36 37 # Exactly one input field should be provided 38 : [MarketInput!] 39 40 : [ProductMediaAddInput!] 41 42 : [ProductVariantAddInput!] 43 44 : TaxGroupInput 45 }