Skip to content

Commit

Permalink
chore(code-first): update imports to workspace paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kasvith committed Jan 24, 2022
1 parent 08f0952 commit 7624329
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/apollo/tests/code-first/cats/cats.resolver.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Args, Query, Resolver } from '../../../lib';
import { Args, Query, Resolver } from '@nestjs/graphql';
import { CatType } from '../enums/cat-type.enum';

@Resolver()
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo/tests/code-first/enums/cat-type.enum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { registerEnumType } from '../../../lib/type-factories/register-enum-type.factory';
import { registerEnumType } from '@nestjs/graphql';
export enum CatType {
PersianCat = 'persian-cat',
MaineCoon = 'maine-coon',
Expand Down

0 comments on commit 7624329

Please sign in to comment.