From 1555c988e05049e49f119d7684fc0172e469c283 Mon Sep 17 00:00:00 2001 From: Eran Kampf Date: Mon, 30 Oct 2017 14:31:20 -0700 Subject: [PATCH] Fix resolve arguments section according to 2.0 resolvers --- docs/execution/middleware.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/execution/middleware.rst b/docs/execution/middleware.rst index c5e11aa7..a85b1f4b 100644 --- a/docs/execution/middleware.rst +++ b/docs/execution/middleware.rst @@ -18,10 +18,8 @@ Middlewares ``resolve`` is invoked with several arguments: - ``next`` represents the execution chain. Call ``next`` to continue evalution. - ``root`` is the root value object passed throughout the query. -- ``args`` is the hash of arguments passed to the field. -- ``context`` is the context object passed throughout the query. - ``info`` is the resolver info. - +- ``args`` is the hash of arguments passed to the field. Example -------