You are here

Entity.php in GraphQL 8.3

File

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

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

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

/**
 * @GraphQLInterface(
 *   id = "entity",
 *   name = "Entity",
 *   type = "entity",
 *   description = @Translation("Common entity interface containing generic entity properties.")
 * )
 */
class Entity extends InterfacePluginBase {

}

Classes

Namesort descending Description
Entity Plugin annotation @GraphQLInterface( id = "entity", name = "Entity", type = "entity", description = @Translation("Common entity interface containing generic entity properties.") )