mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
30 lines
672 B
PHP
30 lines
672 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Queries\Models\Pagination\Wiki\Video;
|
|
|
|
use App\GraphQL\Schema\Queries\Models\Pagination\EloquentPaginationQuery;
|
|
use App\GraphQL\Schema\Types\Wiki\Video\VideoScriptType;
|
|
|
|
class VideoScriptPaginationQuery extends EloquentPaginationQuery
|
|
{
|
|
public function name(): string
|
|
{
|
|
return 'videoscriptPagination';
|
|
}
|
|
|
|
public function description(): string
|
|
{
|
|
return 'Returns a listing of scripts resources given fields.';
|
|
}
|
|
|
|
/**
|
|
* The base return type of the query.
|
|
*/
|
|
public function baseType(): VideoScriptType
|
|
{
|
|
return new VideoScriptType();
|
|
}
|
|
}
|