Compare commits

..

No commits in common. "a5050ed08dc83545154b2cdba178fddd1109364a" and "021cd35278ea74f6971ae021b33ddc1bba020e6d" have entirely different histories.

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