mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
23 lines
541 B
PHP
23 lines
541 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Mutations\Submissions\Base;
|
|
|
|
use App\GraphQL\Schema\Mutations\Submissions\BaseSubmissionMutation;
|
|
use Illuminate\Support\Str;
|
|
|
|
abstract class UpdateSubmissionMutation extends BaseSubmissionMutation
|
|
{
|
|
/**
|
|
* The input type of the 'input' argument on the top mutation.
|
|
*/
|
|
public function rootInput(): string
|
|
{
|
|
return Str::of('Update')
|
|
->append($this->baseType()->getName())
|
|
->append('Input')
|
|
->__toString();
|
|
}
|
|
}
|