diff --git a/docs/definitions/expression-language.md b/docs/definitions/expression-language.md index b60710e25..5064fcfa7 100644 --- a/docs/definitions/expression-language.md +++ b/docs/definitions/expression-language.md @@ -12,7 +12,7 @@ All definition config entries can use expression language but it must be explici | boolean **isTypeOf**(string $className) | Verified if `value` is instance of className | @=isTypeOf('AppBundle\\User\\User') | | mixed **resolver**(string $alias, array $args = []) | call the method on the tagged service "overblog_graphql.resolver" with args | @=resolver('blog_by_id', [value['blogID']] | res | | mixed **mutation**(string $alias, array $args = []) | call the method on the tagged service "overblog_graphql.mutation" with args | @=mutation('remove_post_from_community', [value]) | mut | -| mixed **arguments**(array $mapping, mixed $data) | Transform and validate a list of arguments. [Arguments Transformer](arguments-transformer.md) | @=arguments(['input' => 'MyInput'], ['input' => ['field1' => "value1"]]) | +| mixed **arguments**(array $mapping, mixed $data) | Transform and validate a list of arguments. [Arguments Transformer](../annotations/arguments-transformer.md) | @=arguments(['input' => 'MyInput'], ['input' => ['field1' => "value1"]]) | | string **globalId**(string\|int id, string $typeName = null) | Relay node globalId | @=globalId(15, 'User') | | array **fromGlobalId**(string $globalId) | Relay node fromGlobalId | @=fromGlobalId('QmxvZzox') | | object **newObject**(string $className, array $args = []) | Instantiation $className object with $args | @=newObject('AppBundle\\User\\User', ['John', 15]) |