You are here

EntityAccess.php in GraphQL 8.3

File

modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityAccess.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_access",
 *   secure = true,
 *   name = "entityAccess",
 *   type = "Boolean",
 *   parents = {"Entity"},
 *   arguments = {
 *     "operation" = "String!"
 *   }
 * )
 */
class EntityAccess extends FieldPluginBase {

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

}

Classes

Namesort descending Description
EntityAccess Plugin annotation @GraphQLField( id = "entity_access", secure = true, name = "entityAccess", type = "Boolean", parents = {"Entity"}, arguments = { "operation" = "String!" } )