##Available queries
| Associated query | Returns multiple results |
|---|---|
| Price | |
| Prices | ✔️ |
##Available fields
| Label | Type | Notes | Null |
|---|---|---|---|
| amount | decimal(14,4) | The price | |
| currency | Currency | The currency used for this price | |
| id | integer | The id of this price | |
| pack | Pack | The pack using this price (if there is one) | ✔️ |
| price_level | Price Level | The price level used for this price | |
| variant | Variant | The variant using this price (if there is one) |
##Example of a query
query{
Prices{
edges{
node{
amount
currency{
iso
}
id
pack{
id
}
price_level{
id
}
variant{
label
}
}
}
}
}