From a67ac24a141953dda0eac4912485e6f79022078a Mon Sep 17 00:00:00 2001 From: Bram Borggreve Date: Fri, 24 Apr 2020 23:18:28 -0500 Subject: [PATCH] fix(docs): remove unused imports in example page --- documentation/docs/introduction/example.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/documentation/docs/introduction/example.mdx b/documentation/docs/introduction/example.mdx index 056a291ba..748b2798c 100644 --- a/documentation/docs/introduction/example.mdx +++ b/documentation/docs/introduction/example.mdx @@ -152,10 +152,9 @@ Once the resolver is generated paste the following into `src/todo-item/todo-item import { QueryService } from '@nestjs-query/core'; import { CRUDResolver } from '@nestjs-query/query-graphql'; import { InjectTypeOrmQueryService } from '@nestjs-query/query-typeorm'; -import { Resolver, Query, Args } from '@nestjs/graphql'; +import { Resolver } from '@nestjs/graphql'; import { TodoItemDTO } from './todo-item.dto'; import { TodoItemEntity } from './todo-item.entity'; -import { TodoItemService } from './todo-item.service'; @Resolver() export class TodoItemResolver extends CRUDResolver(TodoItemDTO) {