mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-27 09:14:43 +02:00
39 lines
872 B
PHP
39 lines
872 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Fields;
|
|
|
|
use App\Contracts\GraphQL\Fields\DisplayableField;
|
|
use App\Contracts\GraphQL\Fields\FilterableField;
|
|
use App\Contracts\GraphQL\Fields\SortableField;
|
|
use App\Enums\GraphQL\SortType;
|
|
use App\GraphQL\Filter\Filter;
|
|
use App\GraphQL\Filter\StringFilter;
|
|
use GraphQL\Type\Definition\Type;
|
|
|
|
abstract class StringField extends Field implements DisplayableField, FilterableField, SortableField
|
|
{
|
|
public function baseType(): Type
|
|
{
|
|
return Type::string();
|
|
}
|
|
|
|
public function canBeDisplayed(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function getFilter(): Filter
|
|
{
|
|
return new StringFilter($this->getName(), $this->getColumn())
|
|
->useEq()
|
|
->useLike();
|
|
}
|
|
|
|
public function sortType(): SortType
|
|
{
|
|
return SortType::ROOT;
|
|
}
|
|
}
|