Skip to content

Commit

Permalink
Merge pull request #546 from overblog/murtukov-patch-1
Browse files Browse the repository at this point in the history
Update expression-language.md
  • Loading branch information
mcg-web committed Aug 5, 2019
2 parents b3d8a2f + 9b5c5ee commit e7e698d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/definitions/expression-language.md
Expand Up @@ -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|


Expand Down

0 comments on commit e7e698d

Please sign in to comment.