##Available queries
| Associated query | Returns multiple results | 
|---|---|
| PriceLevel | |
| PriceLevels | ✔️ | 
##Available fields
| Label | Type | Notes | Null | 
|---|---|---|---|
| id | integer | The price level's id | |
| label | string | The price level's label | |
| type | string | The 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
      }
    }
  }
}
