mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Queries\Models\Pagination\Admin;
|
|
|
|
use App\Constants\FeatureConstants;
|
|
use App\Contracts\GraphQL\Fields\DeprecatedField;
|
|
use App\GraphQL\Schema\Queries\Models\Pagination\EloquentPaginationQuery;
|
|
use App\GraphQL\Schema\Types\Admin\FeatureType;
|
|
use App\Models\Admin\Feature;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class FeaturePaginationQuery extends EloquentPaginationQuery implements DeprecatedField
|
|
{
|
|
public function name(): string
|
|
{
|
|
return 'featurePagination';
|
|
}
|
|
|
|
public function description(): string
|
|
{
|
|
return 'Returns a listing of feature resources given fields.';
|
|
}
|
|
|
|
/**
|
|
* The base return type of the query.
|
|
*/
|
|
public function baseType(): FeatureType
|
|
{
|
|
return new FeatureType();
|
|
}
|
|
|
|
protected function query(Builder $builder, array $args): Builder
|
|
{
|
|
return $builder->where(Feature::ATTRIBUTE_SCOPE, FeatureConstants::NULL_SCOPE);
|
|
}
|
|
|
|
public function deprecationReason(): string
|
|
{
|
|
return 'Internal use only';
|
|
}
|
|
}
|