Compare commits
No commits in common. "de653ba54ca11e46d20bac163cd77f39b5fb7283" and "cd20cfcb40acb4de30c6b57fdd9f18fe67393df1" have entirely different histories.
de653ba54c
...
cd20cfcb40
@ -3958,16 +3958,7 @@ export type GetUserTagsQueryVariables = Exact<{ [key: string]: never }>;
|
||||
|
||||
export type GetUserTagsQuery = {
|
||||
__typename?: "Query";
|
||||
getUserTags: Array<{
|
||||
__typename?: "TagGQL";
|
||||
id: number;
|
||||
name: string;
|
||||
tagClasses?: Array<{
|
||||
__typename?: "TagClassGQL";
|
||||
id: number;
|
||||
name: string;
|
||||
}> | null;
|
||||
}>;
|
||||
getUserTags: Array<{ __typename?: "TagGQL"; id: number; name: string }>;
|
||||
};
|
||||
|
||||
export type FollowUserMutationVariables = Exact<{
|
||||
@ -7062,10 +7053,6 @@ export const GetUserTagsDocument = gql`
|
||||
getUserTags {
|
||||
id
|
||||
name
|
||||
tagClasses {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@ -79,10 +79,6 @@ query GetUserTags {
|
||||
getUserTags {
|
||||
id
|
||||
name
|
||||
tagClasses {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user