mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
88 lines
1.8 KiB
PHP
88 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Fields;
|
|
|
|
use App\Concerns\GraphQL\ResolvesArguments;
|
|
use App\GraphQL\Argument\Argument;
|
|
use App\GraphQL\Schema\Types\BaseType;
|
|
use App\GraphQL\Schema\Unions\BaseUnion;
|
|
use GraphQL\Type\Definition\ResolveInfo;
|
|
use GraphQL\Type\Definition\Type;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Str;
|
|
use Rebing\GraphQL\Support\Facades\GraphQL;
|
|
|
|
abstract class Field
|
|
{
|
|
use ResolvesArguments;
|
|
|
|
public ?string $deprecationReason = null;
|
|
|
|
public function __construct(
|
|
protected string $column,
|
|
protected ?string $name = null,
|
|
protected bool $nullable = true,
|
|
) {}
|
|
|
|
/**
|
|
* Get the name of the field.
|
|
* By default, the name will be the column in camelCase.
|
|
*/
|
|
public function name(): string
|
|
{
|
|
return $this->name ?? Str::camel($this->column);
|
|
}
|
|
|
|
public function getColumn(): string
|
|
{
|
|
return $this->column;
|
|
}
|
|
|
|
public function description(): string
|
|
{
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @return Argument[]
|
|
*/
|
|
public function arguments(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function type(): Type
|
|
{
|
|
$baseType = $this->baseType();
|
|
|
|
$type = $baseType instanceof BaseType || $baseType instanceof BaseUnion
|
|
? GraphQL::type($baseType->name())
|
|
: $baseType;
|
|
|
|
if (! $this->nullable) {
|
|
return Type::nonNull($type);
|
|
}
|
|
|
|
return $type;
|
|
}
|
|
|
|
public function deprecate(string $reason): static
|
|
{
|
|
$this->deprecationReason = $reason;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Type|BaseType
|
|
*/
|
|
abstract public function baseType();
|
|
|
|
public function resolve($root, array $args, $context, ResolveInfo $resolveInfo): mixed
|
|
{
|
|
return Arr::get($root, $this->column);
|
|
}
|
|
}
|