diff --git a/src/index.tsx b/src/index.tsx index c7954d0..94b2762 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3930,12 +3930,7 @@ export type GetUserTagsQueryVariables = Exact<{ [key: string]: never }>; export type GetUserTagsQuery = { __typename?: "Query"; - getUserTags: Array<{ - __typename?: "TagGQL"; - id: number; - name: string; - group?: string | null; - }>; + getUserTags: Array<{ __typename?: "TagGQL"; id: number; name: string }>; }; export type FollowUserMutationVariables = Exact<{ @@ -6940,7 +6935,6 @@ export const GetUserTagsDocument = gql` getUserTags { id name - group } } `; diff --git a/src/operations/user.gql b/src/operations/user.gql index a128fc7..8c02d88 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -79,7 +79,6 @@ query GetUserTags { getUserTags { id name - group } }