Skip to content

Commit

Permalink
fix(docs): remove unused imports in example page
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman authored and doug-martin committed Apr 25, 2020
1 parent 361d6c3 commit a67ac24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions documentation/docs/introduction/example.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit a67ac24

Please sign in to comment.