You are here

public function CommentSchemaExtension::registerResolvers in Open Social 10.3.x

Same name and namespace in other branches
  1. 10.2.x modules/social_features/social_comment/src/Plugin/GraphQL/SchemaExtension/CommentSchemaExtension.php \Drupal\social_comment\Plugin\GraphQL\SchemaExtension\CommentSchemaExtension::registerResolvers()

File

modules/social_features/social_comment/src/Plugin/GraphQL/SchemaExtension/CommentSchemaExtension.php, line 24

Class

CommentSchemaExtension
Adds comment data to the Open Social GraphQL API.

Namespace

Drupal\social_comment\Plugin\GraphQL\SchemaExtension

Code

public function registerResolvers(ResolverRegistryInterface $registry) {
  $builder = new ResolverBuilder();
  $this
    ->addQueryFields($registry, $builder);
  $this
    ->addCommentFields($registry, $builder);
}