Hi all,
I see below error when using tagsRemove mutation to remove tag from a inventory transfer. Is it expected / Will tagsRemove support removing tag from inventory transfer soon? Thanks!
{
"errors": [
{
"message": "invalid id",
"locations": [
{
"line": 3,
"column": 3
}
],
"path": [
"tagsRemove"
],
"extensions": {
"code": "RESOURCE_NOT_FOUND"
}
}
]
}
The query is
mutation removeTags($id: ID!, $tags: [String!]!) {
tagsRemove(id: $id, tags: $tags) {
node {
id
}
userErrors {
message
}
}
}
The variable is like below. The id here is bogus but when I test I was using real id of an inventory transfer.
{ "id": "gid://shopify/InventoryTransfer/123456", "tags": ["some tag"]}