mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
37 lines
859 B
PHP
37 lines
859 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\GraphQL\Criteria\Sort\Sort;
|
|
use App\GraphQL\Filter\BooleanFilter;
|
|
use GraphQL\Type\Definition\Type;
|
|
|
|
abstract class BooleanField extends Field implements DisplayableField, FilterableField, SortableField
|
|
{
|
|
public function baseType(): Type
|
|
{
|
|
return Type::boolean();
|
|
}
|
|
|
|
public function canBeDisplayed(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function getFilter(): BooleanFilter
|
|
{
|
|
return new BooleanFilter($this->getName(), $this->getColumn())
|
|
->useEq();
|
|
}
|
|
|
|
public function getSort(): Sort
|
|
{
|
|
return new Sort($this->getName(), $this->getColumn());
|
|
}
|
|
}
|