class EntityById in GraphQL 8.3
Plugin annotation
@GraphQLField(
id = "entity_by_id",
secure = true,
arguments = {
"id" = "String!"
},
contextual_arguments = {"language"},
deriver = "Drupal\graphql_core\Plugin\Deriver\Fields\EntityByIdDeriver"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
- class \Drupal\graphql_core\Plugin\GraphQL\Fields\Entity\EntityById implements ContainerFactoryPluginInterface uses DependencySerializationTrait
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
Expanded class hierarchy of EntityById
File
- modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ Entity/ EntityById.php, line 28
Namespace
Drupal\graphql_core\Plugin\GraphQL\Fields\EntityView source
class EntityById extends FieldPluginBase implements ContainerFactoryPluginInterface {
use DependencySerializationTrait;
/**
* The entity buffer service.
*
* @var \Drupal\graphql\GraphQL\Buffers\EntityBuffer
*/
protected $entityBuffer;
/**
* The entity type manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The entity repository service.
*
* @var \Drupal\Core\Entity\EntityRepositoryInterface
*/
protected $entityRepository;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) {
return new static($configuration, $pluginId, $pluginDefinition, $container
->get('entity_type.manager'), $container
->get('entity.repository'), $container
->get('graphql.buffer.entity'));
}
/**
* EntityById constructor.
*
* @param array $configuration
* The plugin configuration array.
* @param string $pluginId
* The plugin id.
* @param mixed $pluginDefinition
* The plugin definition.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
* @param \Drupal\Core\Entity\EntityRepositoryInterface $entityRepository
* The entity repository service.
* @param \Drupal\graphql\GraphQL\Buffers\EntityBuffer $entityBuffer
* The entity buffer service.
*/
public function __construct(array $configuration, $pluginId, $pluginDefinition, EntityTypeManagerInterface $entityTypeManager, EntityRepositoryInterface $entityRepository, EntityBuffer $entityBuffer) {
parent::__construct($configuration, $pluginId, $pluginDefinition);
$this->entityBuffer = $entityBuffer;
$this->entityTypeManager = $entityTypeManager;
$this->entityRepository = $entityRepository;
}
/**
* {@inheritdoc}
*/
protected function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) {
$resolver = $this->entityBuffer
->add($this
->getPluginDefinition()['entity_type'], $args['id']);
return function ($value, array $args, ResolveContext $context, ResolveInfo $info) use ($resolver) {
if (!($entity = $resolver())) {
// If there is no entity with this id, add the list cache tags so that the
// cache entry is purged whenever a new entity of this type is saved.
$pluginDefinition = $this
->getPluginDefinition();
$entityType = $this->entityTypeManager
->getDefinition($pluginDefinition['entity_type']);
(yield (new CacheableValue(NULL))
->addCacheTags($entityType
->getListCacheTags()));
}
else {
/** @var \Drupal\Core\Entity\EntityInterface $entity */
$access = $entity
->access('view', NULL, TRUE);
if ($access
->isAllowed()) {
if (isset($args['language']) && $args['language'] != $entity
->language()
->getId() && $entity instanceof TranslatableInterface && $entity
->isTranslatable()) {
if ($entity
->hasTranslation($args['language'])) {
$entity = $entity
->getTranslation($args['language']);
}
}
(yield $entity
->addCacheableDependency($access));
}
else {
(yield new CacheableValue(NULL, [
$access,
]));
}
}
};
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's default value. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's description. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds the list of arguments. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's type. | |
CacheablePluginTrait:: |
protected | function | ||
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DeprecatablePluginTrait:: |
protected | function | ||
DescribablePluginTrait:: |
protected | function | ||
EntityById:: |
protected | property | The entity buffer service. | |
EntityById:: |
protected | property | The entity repository service. | |
EntityById:: |
protected | property | The entity type manager service. | |
EntityById:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
EntityById:: |
protected | function |
Retrieve the list of field values. Overrides FieldPluginBase:: |
|
EntityById:: |
public | function |
EntityById constructor. Overrides PluginBase:: |
|
FieldPluginBase:: |
protected | property | Static cache for `isLanguageAwareField()` | |
FieldPluginBase:: |
protected | property | The language context service. | |
FieldPluginBase:: |
protected | property | The renderer service. | 1 |
FieldPluginBase:: |
public static | function |
Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Retrieve the list of cache dependencies for a given value and arguments. | 1 |
FieldPluginBase:: |
public | function |
Returns the plugin's type or field definition for the schema. Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Get the language context instance. | |
FieldPluginBase:: |
protected | function | Get the renderer service. | |
FieldPluginBase:: |
protected | function | Indicator if the field is language aware. | 1 |
FieldPluginBase:: |
public | function | 1 | |
FieldPluginBase:: |
protected | function | ||
FieldPluginBase:: |
protected | function | Unwrap the resolved values. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
TypedPluginTrait:: |
protected | function |