graphql_compose-1.0.0-beta20/modules/graphql_compose_layouts/src/Plugin/GraphQLCompose/FieldType/LayoutSectionItem.php
modules/graphql_compose_layouts/src/Plugin/GraphQLCompose/FieldType/LayoutSectionItem.php
<?php
declare(strict_types=1);
namespace Drupal\graphql_compose_layouts\Plugin\GraphQLCompose\FieldType;
use Drupal\graphql_compose\Attribute\FieldType;
use Drupal\graphql_compose\Plugin\GraphQL\DataProducer\FieldProducerTrait;
use Drupal\graphql_compose\Plugin\GraphQLCompose\GraphQLComposeFieldTypeBase;
/**
* {@inheritdoc}
*/
#[FieldType(
id: "layout_section",
type_sdl: "LayoutSection",
)]
class LayoutSectionItem extends GraphQLComposeFieldTypeBase {
use FieldProducerTrait;
}
