use Overblog\GraphQLBundle\ExpressionLanguage\ExpressionFunction;
8
9
/**
10
* @deprecated since 0.14 and will be removed in 1.0. Use Overblog\GraphQLBundle\ExpressionLanguage\ExpressionFunction\GraphQL\Query instead.
11
*/
12
final class Resolver extends ExpressionFunction
13
{
14
149
public function __construct($name = 'resolver')
15
{
16
149
parent::__construct(
17
$name,
18
149
function (string $alias, string $args = '[]') {
19
@trigger_error(
20
"The 'resolver' expression function is deprecated since 0.14 and will be removed in 1.0. Use 'query' instead. For more info visit: https://github.com/overblog/GraphQLBundle/issues/775",