You are here

EntityType.php in GraphQL 8.3

File

modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityType.php
View 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_type",
 *   secure = true,
 *   name = "entityType",
 *   type = "String",
 *   parents = {"Entity"}
 * )
 */
class EntityType extends FieldPluginBase {

  /**
   * {@inheritdoc}
   */
  public function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) {
    if ($value instanceof EntityInterface) {
      (yield $value
        ->getEntityTypeId());
    }
  }

}

Classes

Namesort descending Description
EntityType Plugin annotation @GraphQLField( id = "entity_type", secure = true, name = "entityType", type = "String", parents = {"Entity"} )