Compare commits

...

2 Commits

Author SHA1 Message Date
021cd35278 Merge pull request 'Add group in return for user tags' (#158) from loewy/add-group-to-get-user-tags into master
Reviewed-on: #158
2025-02-04 14:48:11 -07:00
8dda81236a add group to return for user tags
All checks were successful
Tests / Tests (pull_request) Successful in 16s
2025-02-04 13:44:58 -08:00
2 changed files with 8 additions and 1 deletions

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
}
}