INPUT_OBJECT
AccountUpdateInput
link GraphQL Schema definition
1 input AccountUpdateInput { 2 3 : String 4 5 : Status 6 7 : String 8 9 : String 10 11 : String 12 13 : Int 14 15 : AccountDiscountsInput 16 17 : Boolean 18 19 : Boolean 20 21 : Boolean 22 23 : Boolean 24 25 : CarrierInformationInput 26 27 # Exactly one input field should be provided 28 : MarketInput 29 30 # Exactly one input field should be provided 31 : PricelistInput 32 33 # To remove allocation rule from an account, pass null as id 34 : AllocationRuleInput 35 36 # To remove payment terms from an account, pass null as id 37 : TermsInput 38 39 # To remove shipping terms from an account, pass null as id 40 : TermsInput 41 42 # To remove sales representative from an account, pass null as id 43 : SalesRepresentativeInput 44 45 # To remove tax class from an account, pass null as id 46 : TaxClassInput 47 48 # To remove a document template from an account, pass null as id 49 : DocumentTemplateInput 50 51 : [BrandInput!] 52 53 : [BrandInput!] 54 55 : [AdminUserInput!] 56 57 : [AdminUserInput!] 58 59 : AccountMainAddressInput 60 61 : AccountShippingAddressInput 62 63 : AccountBillingAddressInput 64 65 # Assign an external ID to reference this object by it later 66 : String 67 }