From 1d3605ce2907a1c9b75694c63cf1068adc9fd037 Mon Sep 17 00:00:00 2001 From: divyashasingh <107683777+divyashasingh@users.noreply.github.com> Date: Tue, 27 Sep 2022 14:54:28 +0530 Subject: [PATCH] Fixed delete resolver query name --- documentation/docs/graphql/resolvers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/graphql/resolvers.mdx b/documentation/docs/graphql/resolvers.mdx index 4208b8c972..291b89c0c7 100644 --- a/documentation/docs/graphql/resolvers.mdx +++ b/documentation/docs/graphql/resolvers.mdx @@ -869,7 +869,7 @@ export class TodoItemResolver extends UpdateResolver(TodoItemDTO) { The `DeleteResolver` will only expose the `deleteOne` and `deleteMany` endpoints. The [options](#options) described for `delete` can be passed to the `DeleteResolver` -For example the following resolver will expose the `updateOneTodoItem` and `updateManyTodoItems` mutations. +For example the following resolver will expose the `deleteOneTodoItem` and `deleteManyTodoItems` mutations. ```ts title="todo-item.resolver.ts" import { QueryService, InjectQueryService } from '@nestjs-query/core';