Available queries

Associated queryReturns multiple results
ShippingOrder
ShippingOrders✔️

Available fields

LabelTypeNotesNull
account_managerAccount managerThe account manager associated to this document✔️
changedDateThe date of the shipping order's last modification
createdDateThe date of the shipping order's creation
created_fromSales OrderThe sales order this document was created from
customerCustomerThe customer this document is addressed to✔️
external_referencestringThe external reference of this document✔️
for_the_attention_ofstringThe person this document is addressed to✔️
idintegerThe id of the document
internal_notesstringNotes about this document that only you will see✔️
invoices_createdInvoicesThe invoices created from this document✔️
labelstringThe order number of this specific shipping order. Automatically generated
line_itemsLine itemsThe line items of the document
locationLocationThe location used in the document✔️
notesstringNotes about this document that you AND the customer will see✔️
published_to_shopifybooleanIndicates if the sales order is published to shopify
seasonSeasonThe season used int this document✔️
shipping_dateDateNoHourThe date of shipping✔️
shipping_order_statusstringThe status of the document ("pending", "in_preparation", "ready_to_ship", "make_the_shipment", "shipped", "delivered", "cancelled")
ship_toAddressThe shipping address✔️
terms_and_conditionsstringThe terms and condition of this document✔️
total_unitsdecimal(17,7)The total units of this order
userUserThe user who created this order

Example of a query

query{
  ShippingOrders{
    edges{
      node{
        account_manager{
          id
        }
        changed
        created
        created_from{
          id
        }
        customer{
          id
        }
        external_reference
        for_the_attention_of
        id
        internal_notes
        invoices_created{
          edges{
            node{
              id
            }
          }
        }
        label
        line_items{
          edges{
            node{
              id
            }
          }
        }
        location{
          id
        }
        notes
        season{
          label
        }
        shipping_date
        shipping_order_status
        ship_to{
          country
        }
        terms_and_conditions
        total_units
        user{
          display_name
        }
      }
    }
  }
}