diff --git a/src/index.tsx b/src/index.tsx index 3008068..7da643c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3958,7 +3958,16 @@ export type GetUserTagsQueryVariables = Exact<{ [key: string]: never }>; export type GetUserTagsQuery = { __typename?: "Query"; - getUserTags: Array<{ __typename?: "TagGQL"; id: number; name: string }>; + getUserTags: Array<{ + __typename?: "TagGQL"; + id: number; + name: string; + tagClasses?: Array<{ + __typename?: "TagClassGQL"; + id: number; + name: string; + }> | null; + }>; }; export type FollowUserMutationVariables = Exact<{ @@ -7053,6 +7062,10 @@ export const GetUserTagsDocument = gql` getUserTags { id name + tagClasses { + id + name + } } } `; diff --git a/src/operations/user.gql b/src/operations/user.gql index 8c02d88..9f471c8 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -79,6 +79,10 @@ query GetUserTags { getUserTags { id name + tagClasses { + id + name + } } }