INPUT_OBJECT
CreatePurchaseOrderMutationInput
The input object that defines the fields for the createPurchaseOrder mutation.
link GraphQL Schema definition
- input CreatePurchaseOrderMutationInput {
- # The ID of a vendor.
- : Int64Bit!
- # The source of the shipping address for a purchase order.
- : Int64Bit!
- # A unique number identifying an approved purchase order.
- : Int
- # The current status of this purchase order.
- : PurchaseOrderStatus
- # The ID of the company that will be used in the header of this purchase order.
- : Int64Bit!
- # The order items to attach to a new purchase order.
- : [CreatePurchaseOrderOrderItemsMutationInput]
- # A message to be included on purchase orders when sent to vendors.
- : String
- # The ID of an order group related to this purchase order.
- : Int64Bit!
- # The name of a vendor.
- : String
- # The terms of payment for deliveries from this vendor.
- : PaymentTerm
- # The currency used for all transactions with this vendor.
- : Currency
- # Whether or not the purchase order has been marked as being paid.
- : Boolean
- # A note about this entity.
- : 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.
- : [AssociateFileMutationInput]
- }