From bb197739e5308dc68849978833f6193c3ce83d62 Mon Sep 17 00:00:00 2001 From: Lena Orobei Date: Fri, 14 Jun 2019 10:07:32 -0500 Subject: [PATCH] magento/graphql-ce#741: Add extension point to set custom parameters to Query Context object - added extended docs --- .../GraphQl/Model/Query/ContextParametersProcessorInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/GraphQl/Model/Query/ContextParametersProcessorInterface.php b/app/code/Magento/GraphQl/Model/Query/ContextParametersProcessorInterface.php index bcea6383e7fb..30f1835f2a0f 100644 --- a/app/code/Magento/GraphQl/Model/Query/ContextParametersProcessorInterface.php +++ b/app/code/Magento/GraphQl/Model/Query/ContextParametersProcessorInterface.php @@ -10,7 +10,7 @@ /** * Adding custom parameters to context object: * - * - Add new contextParametersProcessors item to ContextFactory in the di.xml. + * - Add new processors argument item to ContextFactory in the di.xml. * - Class must extend ContextParametersProcessorInterface. * - Implement execute method which adds additional data to the context though extension attributes. * - This data will be present in each resolver.