graphql_compose-1.0.0-beta20/src/Plugin/GraphQLCompose/EntityType/Storage.php
src/Plugin/GraphQLCompose/EntityType/Storage.php
<?php
declare(strict_types=1);
namespace Drupal\graphql_compose\Plugin\GraphQLCompose\EntityType;
use Drupal\graphql_compose\Attribute\EntityType;
use Drupal\graphql_compose\Plugin\GraphQLCompose\GraphQLComposeEntityTypeBase;
/**
* {@inheritdoc}
*
* @see https://www.drupal.org/project/storage
*/
#[EntityType(
id: "storage",
prefix: "Storage",
base_fields: [
"langcode" => [],
"created" => [],
"changed" => [],
"published_at" => [],
"status" => [],
"name" => [
"field_type" => "entity_label",
],
],
)]
class Storage extends GraphQLComposeEntityTypeBase {
}
