You are here

EntityOwnable.php in GraphQL 8.3

File

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

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

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

/**
 * @GraphQLInterface(
 *   id = "entity_ownable",
 *   name = "EntityOwnable",
 *   interfaces = {"Entity"},
 *   description = @Translation("Common interface for entities that have a owner."),
 *   provider = "user"
 * )
 */
class EntityOwnable extends InterfacePluginBase {

}

Classes

Namesort descending Description
EntityOwnable Plugin annotation @GraphQLInterface( id = "entity_ownable", name = "EntityOwnable", interfaces = {"Entity"}, description = @Translation("Common interface for entities that have a owner."), provider = "user" )