mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-26 08:44:30 +02:00
16 lines
244 B
PHP
16 lines
244 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Argument;
|
|
|
|
use GraphQL\Type\Definition\Type;
|
|
|
|
class SearchArgument extends Argument
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('search', Type::string());
|
|
}
|
|
}
|