From 9b5c5ee73d4a873aee6004f07e2ae7b99de4a44d Mon Sep 17 00:00:00 2001 From: Timur Murtukov Date: Mon, 5 Aug 2019 16:16:46 +0200 Subject: [PATCH] Update expression-language.md --- docs/definitions/expression-language.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/definitions/expression-language.md b/docs/definitions/expression-language.md index 52d40c0c5..742dc16b5 100644 --- a/docs/definitions/expression-language.md +++ b/docs/definitions/expression-language.md @@ -326,10 +326,10 @@ Examples |:-------------------- |:------------ |:---- | | `typeResolver` | An object of class `Overblog\GraphQLBundle\Resolver\TypeResolver`| global| | `object` | Refers to the value of the field for which access is being requested. For array `object` will be each item of the array. For Relay connection `object` will be the node of each connection edges. | only available for `config.fields.*.access` with query operation or mutation payload type. | -| `value` | The value returned by a previous resolver | available in the `resolve` and `access`contexts | -| `args` | An array of argument values of current resolver | available in the `resolve` and `access`contexts | -| `info` | A `GraphQL\Type\Definition\ResolveInfo` object of current resolver | available in the `resolve` and `access`contexts | -| `context` | context is defined by your application on the top level of query execution (useful for storing current user, environment details, etc)| available in the `resolve` and `access`contexts | +| `value` | The value returned by a previous resolver | available in the `resolve` and `access` contexts | +| `args` | An array of argument values of current resolver | available in the `resolve` and `access` contexts | +| `info` | A `GraphQL\Type\Definition\ResolveInfo` object of current resolver | available in the `resolve` and `access` contexts | +| `context` | context is defined by your application on the top level of query execution (useful for storing current user, environment details, etc)| available in the `resolve` and `access` contexts | | `childrenComplexity` | Selection field children complexity | only available in `complexity` context|