graphql_compose-1.0.0-beta20/src/Plugin/GraphQLCompose/FieldType/ListIntegerItem.php
src/Plugin/GraphQLCompose/FieldType/ListIntegerItem.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_integer",
type_sdl: "Int",
)]
class ListIntegerItem extends GraphQLComposeFieldTypeBase {
use FieldProducerTrait;
}
