INPUT_OBJECT

OrderUpdateInput

Attributes for updating an order

link GraphQL Schema definition

  • input OrderUpdateInput {
  • # The buyer's shipping address for an order.
  • address: AddressInput
  • # The buyer's billing address. If this is left blank, it will default to the
  • # shipping address.
  • billingAddress: AddressInput
  • # Name of the company making the order for the purposes of billing if applicable.
  • # If this is left blank, it will default to the company name attribute.
  • billingCompanyName: String
  • # The buyer's email address for the purposes of billing. If this is left blank, it
  • # will default to the email address attribute.
  • billingEmailAddress: String
  • # The buyer's first name for the purposes of billing. If this is left blank, it
  • # will default to the first name attribute.
  • billingFirstName: String
  • # The buyer's phone number for the purposes of billing. If this is left blank, it
  • # will default to the phone number attribute.
  • billingPhone: String
  • # The buyer's surname for the purposes of billing. If this is left blank, it will
  • # default to the surname attribute.
  • billingSurname: String
  • # Name of the company making the order if applicable.
  • companyName: String
  • # The buyer's email address.
  • emailAddress: String
  • # The buyer's first name.
  • firstName: String
  • # The buyer's phone number.
  • phone: String
  • # The buyer's surname.
  • surname: String
  • # A message that will be sent to the seller.
  • messageToSeller: String
  • }