for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ApiSkeletons\Doctrine\GraphQL\Type;
use GraphQL\Type\Definition\InputObjectType;
use GraphQL\Type\Definition\Type;
class Pagination extends InputObjectType
{
public function __construct()
$configuration = [
'name' => 'Pagination',
'description' => 'Pagination fields for the GraphQL Complete Connection Model',
'fields' => [
'first' => [
'type' => Type::int(),
'description' => 'Takes a non-negative integer.',
],
'after' => [
'type' => Type::string(),
'description' => 'Takes the cursor type.',
'last' => [
'before' => [
];
parent::__construct($configuration);
}