INPUT_OBJECT

UpdateVendorMutationInput

The input object that defines the fields for the updateVendor mutation.

link GraphQL Schema definition

  • input UpdateVendorMutationInput {
  • # A descriptive name.
  • name: String
  • # Archived vendors may not be used for creating new Purchase Orders or Product
  • # Requests.
  • archived: Boolean
  • # The currency used for all transactions with this vendor.
  • currency: Currency
  • # Determines if approved purchase orders for this vendor should automatically
  • # dispatch an email to the vendor.
  • automate_approved_purchase_orders: Boolean
  • # A list of IDs belonging to the taxes that should be applied to each item sold by
  • # this vendor.
  • taxes: [Int64Bit]
  • # The terms of payment for deliveries from this vendor.
  • payment_terms: PaymentTerm
  • # The physical address of the inventory location.
  • address: CreateAddressMutationInput
  • # A note about this entity.
  • note: NoteMutationInput
  • # A list of file IDs to be associated with this object. These must first have been
  • # uploaded to the /files endpoint and must be currently unassociated.
  • files: [AssociateFileMutationInput]
  • }

link Require by