[Bug] Cannot use tagsRemove mutation to remove tag for inventory transfer

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"]}

It doesn’t look like there’s a way to add or remove tags from an InventoryTransfer via the GraphQL Admin API - can you do this manually from the admin?

I can connect with the product team to raise this as a feature request - what would be the use case that would be unlocked for you, so we can evaluate investment in supporting this?