graphql_compose-1.0.0-beta20/modules/graphql_compose_edges/src/Plugin/GraphQLCompose/SchemaType/EdgeType.php
modules/graphql_compose_edges/src/Plugin/GraphQLCompose/SchemaType/EdgeType.php
<?php
declare(strict_types=1);
namespace Drupal\graphql_compose_edges\Plugin\GraphQLCompose\SchemaType;
use Drupal\graphql_compose\Attribute\SchemaType;
use Drupal\graphql_compose\Plugin\GraphQLCompose\GraphQLComposeSchemaTypeBase;
use Drupal\graphql_compose_edges\EnabledBundlesTrait;
use GraphQL\Type\Definition\InterfaceType;
use GraphQL\Type\Definition\ObjectType;
use GraphQL\Type\Definition\Type;
/**
* {@inheritdoc}
*/
#[SchemaType(
id: "Edge",
)]
class EdgeType extends GraphQLComposeSchemaTypeBase {
use EnabledBundlesTrait;
/**
* {@inheritdoc}
*/
public function getTypes(): array {
$types = [];
$types[] = new InterfaceType([
'name' => $this->getPluginId(),
'description' => (string) $this->t('An edge in a connection.
Provides the cursor to fetch data based on the position of the associated node. Specific edge implementations may provide more information about the relationship they represent.
'),
'fields' => fn() => [
'cursor' => Type::nonNull(static::type('Cursor')),
'node' => Type::nonNull(static::type('EdgeNode')),
],
]);
foreach ($this->getEnabledBundlePlugins() as $bundle) {
$type_sdl = $bundle->getTypeSdl();
$types[] = new ObjectType([
'name' => $type_sdl . 'Edge',
'description' => (string) $this->t('Edge for @bundle.', [
'@bundle' => $type_sdl,
]),
'interfaces' => fn() => [
static::type('Edge'),
],
'fields' => fn() => [
'cursor' => Type::nonNull(static::type('Cursor')),
'node' => Type::nonNull(static::type($type_sdl)),
],
]);
}
return $types;
}
}
