mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
114 lines
2.8 KiB
PHP
114 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Definition\Queries;
|
|
|
|
use App\Concerns\Actions\GraphQL\ConstrainsEagerLoads;
|
|
use App\Concerns\Actions\GraphQL\FiltersModels;
|
|
use App\Concerns\GraphQL\ResolvesArguments;
|
|
use App\GraphQL\Definition\Queries\Models\Pagination\EloquentPaginationQuery;
|
|
use App\GraphQL\Definition\Types\BaseType;
|
|
use App\GraphQL\Support\Argument\Argument;
|
|
use App\GraphQL\Support\Argument\FirstArgument;
|
|
use App\GraphQL\Support\Argument\PageArgument;
|
|
use GraphQL\Type\Definition\Type;
|
|
use Illuminate\Support\Arr;
|
|
use Rebing\GraphQL\Support\Facades\GraphQL;
|
|
use Rebing\GraphQL\Support\Query;
|
|
|
|
abstract class BaseQuery extends Query
|
|
{
|
|
use ConstrainsEagerLoads;
|
|
use FiltersModels;
|
|
use ResolvesArguments;
|
|
|
|
public function __construct(
|
|
protected string $name,
|
|
protected bool $nullable = true,
|
|
protected bool $isList = false,
|
|
) {}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function attributes(): array
|
|
{
|
|
return [
|
|
'name' => $this->getName(),
|
|
'description' => $this->description(),
|
|
'rebingType' => $this->baseRebingType(),
|
|
];
|
|
}
|
|
|
|
public function getName(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
abstract public function description(): string;
|
|
|
|
/**
|
|
* The arguments of the class resolve as customs class helper.
|
|
*
|
|
* @return Argument[]
|
|
*/
|
|
public function arguments(): array
|
|
{
|
|
$arguments = [];
|
|
|
|
$baseType = $this->baseRebingType();
|
|
|
|
if ($this instanceof EloquentPaginationQuery) {
|
|
$arguments[] = new FirstArgument();
|
|
$arguments[] = new PageArgument();
|
|
}
|
|
|
|
if ($baseType instanceof BaseType) {
|
|
$arguments[] = $this->resolveFilterArguments($baseType->fieldClasses());
|
|
}
|
|
|
|
if ($baseType instanceof BaseType && $this instanceof EloquentPaginationQuery) {
|
|
$arguments[] = $this->resolveSortArguments($baseType);
|
|
}
|
|
|
|
return Arr::flatten($arguments);
|
|
}
|
|
|
|
/**
|
|
* Convert the rebing type to a GraphQL type.
|
|
*/
|
|
public function baseType(): Type
|
|
{
|
|
return GraphQL::type($this->baseRebingType()->getName());
|
|
}
|
|
|
|
/**
|
|
* The base return rebing type of the query.
|
|
*/
|
|
public function baseRebingType(): ?BaseType
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* The type returned by the field.
|
|
*/
|
|
public function type(): Type
|
|
{
|
|
if (! $this->nullable) {
|
|
if ($this->isList) {
|
|
return Type::nonNull(Type::listOf(Type::nonNull($this->baseType())));
|
|
}
|
|
|
|
return Type::nonNull($this->baseType());
|
|
}
|
|
|
|
if ($this->isList) {
|
|
return Type::listOf(Type::nonNull($this->baseType()));
|
|
}
|
|
|
|
return $this->baseType();
|
|
}
|
|
}
|