1 | <?php |
||
18 | final class InputValueObject extends ObjectDefinition |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | public const TYPE_NAME = '__InputValue'; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | public const TYPE_DESCRIPTION = 'Arguments provided to Fields or Directives and the input fields of an |
||
29 | InputObject are represented as Input Values which describe their |
||
30 | type and optionally a default value.'; |
||
31 | |||
32 | /** |
||
33 | * @var int |
||
34 | */ |
||
35 | public const TYPE_LINE = 68; |
||
36 | |||
37 | /** |
||
38 | * SchemaObject constructor. |
||
39 | * @param Document $document |
||
40 | */ |
||
41 | 9 | public function __construct(Document $document) |
|
48 | |||
49 | /** |
||
50 | * @return bool |
||
51 | */ |
||
52 | public function isBuiltin(): bool |
||
56 | } |
||
57 |