public function ResolverRegistry::getAllFieldResolvers in Open Social 10.1.x
Same name and namespace in other branches
- 10.0.x modules/custom/social_graphql/src/GraphQL/ResolverRegistry.php \Drupal\social_graphql\GraphQL\ResolverRegistry::getAllFieldResolvers()
Return all field resolvers in the registry.
Return value
callable[] A nested list of callables, keyed by type and field name.
File
- modules/
custom/ social_graphql/ src/ GraphQL/ ResolverRegistry.php, line 24
Class
- ResolverRegistry
- The Open Social resolver registry.
Namespace
Drupal\social_graphql\GraphQLCode
public function getAllFieldResolvers() : array {
return $this->fieldResolvers;
}