Issues (12)

GraphQL/Mutation.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Fnash\GraphQL;
4
5
final class Mutation
6
{
7
    use QueryTrait;
0 ignored issues
show
The trait Fnash\GraphQL\QueryTrait requires the property $name which is not provided by Fnash\GraphQL\Mutation.
Loading history...
8
9
    const KEYWORD = 'mutation';
10
    const GENERATED_NAME_PREFIX = 'mutation_';
11
}
12