Fetch a page of an organization's tags, sorted by name.
Pass the previous page's `pageInfo.endCursor` as `after` to fetch the next page.

```graphql
query GetTags {
  tagsV2(
    after: "cursor_to_start_after",
    first: 20,
    input: {organizationId: "some_organization_id", filter: {isLocked: false}}
  ) {
    pageInfo {
      startCursor
      endCursor
      hasNextPage
    }
    edges {
      node {
        id
        name
        color
        colorName
        isLocked
      }
    }
    totalCount
  }
}
```
