Available queries

Associated queryReturns multiple results
StockEntry
StockEntries✔️

Available fields

LabelTypeNotesNull
changedDateThe date of the stock entry's last modification
createdDateThe date of the stock entry's creation
external_referencestringThe external reference of this document✔️
idintegerThe id of the document
labelstringThe order number of this specific stock entry. 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✔️
stock_entry_statusstringThe status of this stock entry ("completed", "cancelled")
total_unitsdecimal(17,7)The total units of this order
userUserThe user who created this order

Example of a query

query{
  StockEntries{
    edges{
      node{
        changed
        created
        external_reference
        id
        label
        line_items{
          edges{
            node{
              id
            }
          }
        }
        location{
          id
        }
        notes
        stock_entry_status
        total_units
        user{
          display_name
        }
      }
    }
  }
}