graphql_compose-1.0.0-beta20/src/Plugin/GraphQLCompose/EntityType/Paragraph.php
src/Plugin/GraphQLCompose/EntityType/Paragraph.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/paragraphs
*/
#[EntityType(
id: "paragraph",
prefix: "Paragraph",
base_fields: [
"created" => [],
"changed" => [],
"langcode" => [],
"status" => [],
],
)]
class Paragraph extends GraphQLComposeEntityTypeBase {
}
