You are here

EntityRevisionable.php in GraphQL 8.3

File

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

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

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

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

}

Classes

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