INPUT_OBJECT
CustomerCreateInput
link GraphQL Schema definition
1 input CustomerCreateInput { 2 3 : StoreInput! 4 5 : Status! 6 7 : String! 8 9 : String 10 11 : Gender 12 13 : Date 14 15 : String 16 17 : CustomerBillingAddressInput! 18 19 : Boolean 20 21 # Exactly one input field should be provided 22 : MarketInput 23 24 # Exactly one input field should be provided 25 : PricelistInput 26 27 : TaxClassInput 28 29 : LanguageInput 30 31 : DateTimeTz 32 33 # Assign an external ID to reference this object by it later 34 : String 35 }