graphql_core_schema-1.0.x-dev/tests/modules/graphql_core_schema_test/src/Plugin/GraphQL/SchemaExtension/Fruits.php
tests/modules/graphql_core_schema_test/src/Plugin/GraphQL/SchemaExtension/Fruits.php
<?php
namespace Drupal\graphql_core_schema_test\Plugin\GraphQL\SchemaExtension;
use Drupal\graphql\GraphQL\ResolverRegistryInterface;
use Drupal\graphql\Plugin\GraphQL\SchemaExtension\SdlSchemaExtensionPluginBase;
/**
* Test schema extension.
*
* @SchemaExtension(
* id = "fruits",
* name = "fruits",
* description = "fruits",
* schema = "core_composable"
* )
*/
class Fruits extends SdlSchemaExtensionPluginBase {
/**
* {@inheritdoc}
*/
public function registerResolvers(ResolverRegistryInterface $registry): void {
}
}
