Remove unused GQL Type

This commit is contained in:
Amit Jakubowicz 2019-11-09 07:43:28 +01:00
parent fc615901da
commit 4223650472
2 changed files with 0 additions and 11 deletions

6
@types/graphql.d.ts vendored
View File

@ -288,12 +288,6 @@ declare namespace GQL {
translations: Array<ICreateModifyEventTagTranslationInput>;
}
interface ITagTranslation {
__typename: 'TagTranslation';
language: string;
text: string;
}
interface IRevokeRoleInput {
userId: string;
roleType: any;

View File

@ -7,11 +7,6 @@ type User {
roles: [UserRole!]
}
type TagTranslation {
language: String!
text: String!
}
type UserRole {
user: User!
type: RoleType!