Add group in return for user tags #158

Merged
loewy merged 1 commits from loewy/add-group-to-get-user-tags into master 2025-02-04 14:48:12 -07:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 8dda81236a - Show all commits

View File

@ -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
}
}
`;

View File

@ -79,6 +79,7 @@ query GetUserTags {
getUserTags {
id
name
group
}
}