Available queries

Associated queryReturns multiple results
Delivery
Deliveries✔️

Available fields

LabelTypeNotesNull
changedDateThe date of the delivery's last modification
createdDateThe date of the delivery's creation
currencyCurrencyThe currency used for the delivery✔️
delivery_statusstringThe status of the delivery ("pending", "delivered", "cancelled")
external_referencestringThe external reference✔️
global_discountdecimal(12,6)The global discount applied in the delivery✔️
idintegerThe id of the delivery
labelstringThe order number of this specific delivery. Automatically generated
line_itemsLine itemsThe line items of the document
locationLocationThe location the delivery is being sent to✔️
notesstringNotes about this document that you AND the customer will see✔️
shipping_costdecimal(10,2)The shipping cost✔️
shipping_dateDateNoHourThe date of shipping✔️
shipping_taxesTaxesThe taxes applied to the shipping✔️
subtotaldecimal(12,2)The subtotal of this document
supplierSupplierThe supplier of this delivery✔️
totaldecimal(12,2)The total of this document
total_taxesTotal taxesThe total taxes of this document✔️
total_unitsdecimal(17,7)The total units of this order
userUserThe user who created this order

Example of a query

query{
  Deliveries{
    edges{
      node{
        changed
        created
        currency{
          id
        }
        delivery_status
        external_reference
        global_discount
        id
        label
        line_items{
          edges{
            node{
              id
            }
          }
        }
        location{
          id
        }
        notes
        shipping_cost
        shipping_date
        shipping_taxes{
          edges{
            node{
              id
            }
          }
        }
        subtotal
        supplier{
          id
        }
        total
        total_taxes{
          edges{
            node{
              id
            }
          }
        }
        total_units
        user{
          display_name
        }
      }
    }
  }
}