graphql_compose-1.0.0-beta20/src/Plugin/GraphQLCompose/FieldType/ListStringItem.php
src/Plugin/GraphQLCompose/FieldType/ListStringItem.php
<?php
declare(strict_types=1);
namespace Drupal\graphql_compose\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: "list_string",
type_sdl: "String",
)]
class ListStringItem extends GraphQLComposeFieldTypeBase {
use FieldProducerTrait;
}
