From 8dda81236a59ee0c48bba4d732cd277df031f810 Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 4 Feb 2025 13:44:58 -0800 Subject: [PATCH] add group to return for user tags --- src/index.tsx | 8 +++++++- src/operations/user.gql | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 94b2762..c7954d0 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3930,7 +3930,12 @@ 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; + group?: string | null; + }>; }; export type FollowUserMutationVariables = Exact<{ @@ -6935,6 +6940,7 @@ export const GetUserTagsDocument = gql` getUserTags { id name + group } } `; diff --git a/src/operations/user.gql b/src/operations/user.gql index 8c02d88..a128fc7 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -79,6 +79,7 @@ query GetUserTags { getUserTags { id name + group } }