1 | <?php |
||
9 | class SomeMutationField implements MutationFieldInterface |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function getName(): string |
||
19 | |||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function getType(): Type |
||
28 | |||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getDescription(): string |
||
37 | |||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function getArgs(): array |
||
48 | |||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function resolve(array $root, array $args, $context = NULL) |
||
57 | |||
58 | } |
||
59 |