Available queries

Associated queryReturns multiple results
Estimate
Estimates✔️

Available fields

LabelTypeNotesNull
account_managerAccount managerThe account manager associated to this document✔️
bill_toAddressThe billing address✔️
changedDateThe date of the estimate's last modification
createdDateThe date of the estimate's creation
currencyCurrencyThe currency used in this document✔️
customerCustomerThe customer this document is addressed to✔️
delivery_typestringThe type of delivery used in this document✔️
discountdecimal(10,2)The discount applied in this document✔️
estimate_statusstringThe status of this document ("pending", "accepted", "accepted_and_transformed", "rejected", "cancelled")
exchange_ratedecimal(12,6)The exchange rate for this document's currency✔️
expiration_dateDateNoHourThe expiration date of this document✔️
external_referencestringThe external reference of this document✔️
for_the_attention_ofstringThe person this document is addressed to✔️
global_discountdecimal(12,2)The global discount applied to the document✔️
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 estimate. 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✔️
price_levelPrice levelThe price level used in this document
sales_order_createdSales orderThe sales order created from this document✔️
seasonSeasonThe season used int this document✔️
shipping_costdecimal(10,2)The shipping cost✔️
shipping_dateDateNoHourThe shipping date used in this document✔️
shipping_taxesTaxesThe shipping taxes used in this document✔️
ship_toAddressThe shipping address✔️
subtotaldecimal(12,2)The subtotal of this document
taxesTaxesThe taxes applied to this order✔️
tax_typeObjectThe type of the taxes of this document ("Inclusive", "Exclusive")
terms_and_conditionsstringThe terms and condition of this document✔️
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{ Estimates{ edges{ node{ account_manager{ id } bill_to{ country } changed created currency{ iso } customer{ id } delivery_type discount estimate_status exchange_rate expiration_date external_reference for_the_attention_of global_discount id internal_notes invoices_created{ edges{ node{ id } } } label line_items{ edges{ node{ id } } } location{ id } notes price_level{ id } sales_order_created{ id } season{ label } shipping_cost shipping_date shipping_taxes{ edges{ node{ id } } } ship_to{ country } subtotal taxes{ edges{ node{ id } } } tax_type terms_and_conditions total total_taxes{ edges{ node{ id } } } total_units user{ display_name } } } } }