From 43d13ceaeddbba675d87f66ed9a63c06d26b9edd Mon Sep 17 00:00:00 2001 From: Timur Murtukov Date: Mon, 5 Aug 2019 16:15:25 +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 885f99b72..52d40c0c5 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 | only available in `resolve` context| -| `args` | An array of argument values of current resolver | only available in `resolve` context | -| `info` | A `GraphQL\Type\Definition\ResolveInfo` object of current resolver | only available in `resolve` context| -| `context` | context is defined by your application on the top level of query execution (useful for storing current user, environment details, etc)| only available in `resolve` context | +| `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|