Available queries

Associated queryReturns multiple results
PriceLevel
PriceLevels✔️

Available fields

LabelTypeNotesNull
idintegerThe price level's id
labelstringThe price level's label
typestringThe price level's type. If true then the type is "purchasing", else it is "selling"

Example of a query

query{
  PriceLevels{
    edges{
      node{
        id
        label
        type
      }
    }
  }
}