##Available queries
| Associated query | Returns multiple results |
|---|---|
| ProductTag | |
| ProductTags | ✔️ |
##Available fields
| Label | Type | Notes | Null |
|---|---|---|---|
| id | integer | The product tags's id | |
| label | string | The product tag's label |
##Example of a query
query{
ProductTags{
edges{
node{
id
label
}
}
}
}