You are here

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

File

modules/social_features/social_topic/src/Plugin/GraphQL/SchemaExtension/TopicSchemaExtension.php, line 24

Class

TopicSchemaExtension
Adds topic data to the Open Social GraphQL API.

Namespace

Drupal\social_topic\Plugin\GraphQL\SchemaExtension

Code

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