Files
animethemes-server/app/GraphQL/Schema/Queries/Models/Pagination/Wiki/ThemeGroupPaginationQuery.php
T
2026-03-09 10:41:34 -03:00

30 lines
660 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Queries\Models\Pagination\Wiki;
use App\GraphQL\Schema\Queries\Models\Pagination\EloquentPaginationQuery;
use App\GraphQL\Schema\Types\Wiki\ThemeGroupType;
class ThemeGroupPaginationQuery extends EloquentPaginationQuery
{
public function name(): string
{
return 'themegroupPagination';
}
public function description(): string
{
return 'Returns a listing of theme groups resources given fields.';
}
/**
* The base return type of the query.
*/
public function baseType(): ThemeGroupType
{
return new ThemeGroupType();
}
}