You are here

EntityDescribable.php in GraphQL 8.3

File

modules/graphql_core/src/Plugin/GraphQL/Interfaces/Entity/EntityDescribable.php
View source
<?php

namespace Drupal\graphql_core\Plugin\GraphQL\Interfaces\Entity;

use Drupal\graphql\Plugin\GraphQL\Interfaces\InterfacePluginBase;

/**
 * @GraphQLInterface(
 *   id = "entity_describable",
 *   name = "EntityDescribable",
 *   interfaces = {"Entity"},
 *   description = @Translation("Common interface for entities that are describable.")
 * )
 */
class EntityDescribable extends InterfacePluginBase {

}

Classes

Namesort descending Description
EntityDescribable Plugin annotation @GraphQLInterface( id = "entity_describable", name = "EntityDescribable", interfaces = {"Entity"}, description = @Translation("Common interface for entities that are describable.") )