Compare commits
	
		
			2 Commits
		
	
	
		
			c7ff615fe4
			...
			021cd35278
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 021cd35278 | |||
| 8dda81236a | 
@@ -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
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
`;
 | 
			
		||||
 
 | 
			
		||||
@@ -79,6 +79,7 @@ query GetUserTags {
 | 
			
		||||
  getUserTags {
 | 
			
		||||
    id
 | 
			
		||||
    name
 | 
			
		||||
    group
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user