diff --git a/apps/users-application/src/users/models/user.model.ts b/apps/users-application/src/users/models/user.model.ts deleted file mode 100644 index c91c2eb..0000000 --- a/apps/users-application/src/users/models/user.model.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Directive, Field, ID, ObjectType } from '@nestjs/graphql'; - -@ObjectType() -@Directive('@key(fields: "id")') -export class User { - @Field(() => ID) - id: number; - - @Field() - name: string; -} \ No newline at end of file