SchemaExtensionPluginBase.php in Open Social 10.2.x
Same filename and directory in other branches
File
modules/custom/social_graphql/src/Plugin/GraphQL/SchemaExtension/SchemaExtensionPluginBase.phpView source
<?php
namespace Drupal\social_graphql\Plugin\GraphQL\SchemaExtension;
use Drupal\graphql\Plugin\GraphQL\SchemaExtension\SdlSchemaExtensionPluginBase;
use Drupal\social_graphql\GraphQL\StandardisedMutationSchemaTrait;
/**
* Base class that can be used for Open Social schema extension plugins.
*/
abstract class SchemaExtensionPluginBase extends SdlSchemaExtensionPluginBase {
use StandardisedMutationSchemaTrait;
}
Classes
Name | Description |
---|---|
SchemaExtensionPluginBase | Base class that can be used for Open Social schema extension plugins. |