mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 13:13:30 +03:00
Added GraphQL\GraphQL::setDefaultFieldResolver()
This commit is contained in:
parent
2043cc7e75
commit
078a1efd50
1 changed files with 8 additions and 0 deletions
|
@ -81,6 +81,14 @@ class GraphQL
|
|||
return array_values(Directive::getInternalDirectives());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param callable $fn
|
||||
*/
|
||||
public static function setDefaultFieldResolver(callable $fn)
|
||||
{
|
||||
Executor::setDefaultFieldResolver($fn);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param PromiseAdapter|null $promiseAdapter
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue