Files
animethemes-server/app/GraphQL/Schema/Fields/Auth/Role/RoleNameField.php
T

22 lines
408 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Fields\Auth\Role;
use App\GraphQL\Schema\Fields\StringField;
use App\Models\Auth\Role;
class RoleNameField extends StringField
{
public function __construct()
{
parent::__construct(Role::ATTRIBUTE_NAME, nullable: false);
}
public function description(): string
{
return 'The label of the resource';
}
}