Fetch a single tag by its ID.

```graphql
query GetTag {
  tag(input: {
    id: "some_tag_id"
  }) {
    id
    name
    color
    colorName
    isLocked
  }
}
```
