You are here

EntityPublishable.php in GraphQL 8.3

File

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

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

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

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

}

Classes

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