EntityLabel.php in GraphQL 8.3
File
modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityLabel.phpView source
<?php
namespace Drupal\graphql_core\Plugin\GraphQL\Fields\Entity;
use Drupal\Core\Entity\EntityInterface;
use Drupal\graphql\GraphQL\Execution\ResolveContext;
use Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase;
use GraphQL\Type\Definition\ResolveInfo;
/**
* @GraphQLField(
* id = "entity_label",
* secure = true,
* name = "entityLabel",
* type = "String",
* parents = {"Entity"}
* )
*/
class EntityLabel extends FieldPluginBase {
/**
* {@inheritdoc}
*/
public function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) {
if ($value instanceof EntityInterface) {
(yield $value
->label());
}
}
}
Classes
Name![]() |
Description |
---|---|
EntityLabel | Plugin annotation @GraphQLField( id = "entity_label", secure = true, name = "entityLabel", type = "String", parents = {"Entity"} ) |