From 2657628a5458690dc7c0803c164fda0565caff2f Mon Sep 17 00:00:00 2001 From: Loewy Date: Wed, 5 Feb 2025 12:48:56 -0800 Subject: [PATCH] add tagClasses to operation --- src/index.tsx | 15 ++++++++++++++- src/operations/user.gql | 4 ++++ 2 files changed, 18 insertions(+), 1 deletion(-) 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 + } } } -- 2.47.0