Hey there!
Trying to update tag on a product, using Shopify GraphiQL APP and permissions for writing products are in place however request:
mutation tagsAdd {
tagsAdd(id: "gid://shopify/Product/6737412522042", tags: "b2s_upholstery_263109148730") {
node {
id
}
userErrors {
field
message
}
}
}
returns
{
"data": {
"tagsAdd": null
},
"errors": [
{
"message": "Access denied for tagsAdd field.",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"tagsAdd"
],
"extensions": {
"code": "ACCESS_DENIED",
"documentation": "https://shopify.dev/api/usage/access-scopes"
}
}
],
"extensions": {
"cost": {
"requestedQueryCost": 10,
"actualQueryCost": 10,
"throttleStatus": {
"maximumAvailable": 1000,
"currentlyAvailable": 990,
"restoreRate": 50
}
}
}
}
Appreciate any input on topic!