-
-
Notifications
You must be signed in to change notification settings - Fork 574
Expand file tree
/
Copy pathObjectType.php
More file actions
208 lines (181 loc) · 5.86 KB
/
ObjectType.php
File metadata and controls
208 lines (181 loc) · 5.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
declare(strict_types=1);
namespace GraphQL\Type\Definition;
use GraphQL\Deferred;
use GraphQL\Error\InvariantViolation;
use GraphQL\Language\AST\ObjectTypeDefinitionNode;
use GraphQL\Language\AST\ObjectTypeExtensionNode;
use GraphQL\Language\AST\TypeDefinitionNode;
use GraphQL\Type\Schema;
use GraphQL\Utils\Utils;
use function array_map;
use function is_array;
use function is_callable;
use function is_string;
use function sprintf;
/**
* Object Type Definition
*
* Most GraphQL types you define will be object types. Object types
* have a name, but most importantly they describe their fields.
*
* Example:
*
* $AddressType = new ObjectType([
* 'name' => 'Address',
* 'fields' => [
* 'street' => [ 'type' => GraphQL\Type\Definition\Type::string() ],
* 'number' => [ 'type' => GraphQL\Type\Definition\Type::int() ],
* 'formatted' => [
* 'type' => GraphQL\Type\Definition\Type::string(),
* 'resolve' => function($obj) {
* return $obj->number . ' ' . $obj->street;
* }
* ]
* ]
* ]);
*
* When two types need to refer to each other, or a type needs to refer to
* itself in a field, you can use a function expression (aka a closure or a
* thunk) to supply the fields lazily.
*
* Example:
*
* $PersonType = null;
* $PersonType = new ObjectType([
* 'name' => 'Person',
* 'fields' => function() use (&$PersonType) {
* return [
* 'name' => ['type' => GraphQL\Type\Definition\Type::string() ],
* 'bestFriend' => [ 'type' => $PersonType ],
* ];
* }
* ]);
*/
class ObjectType extends TypeWithFields implements OutputType, CompositeType, NullableType, NamedType, ImplementingType
{
/** @var ObjectTypeDefinitionNode|null */
public ?TypeDefinitionNode $astNode;
/** @var array<int, ObjectTypeExtensionNode> */
public array $extensionASTNodes;
/** @var callable|null */
public $resolveFieldFn;
/**
* Lazily initialized.
*
* @var array<int, InterfaceType>
*/
private array $interfaces;
/**
* Lazily initialized.
*
* @var array<string, InterfaceType>
*/
private array $interfaceMap;
/**
* @param mixed[] $config
*/
public function __construct(array $config)
{
$name = $config['name'] ?? $this->tryInferName();
Utils::invariant(is_string($name), 'Must provide name.');
$this->name = $name;
$this->description = $config['description'] ?? null;
$this->resolveFieldFn = $config['resolveField'] ?? null;
$this->astNode = $config['astNode'] ?? null;
$this->extensionASTNodes = $config['extensionASTNodes'] ?? [];
$this->config = $config;
}
/**
* @param mixed $type
*
* @return $this
*
* @throws InvariantViolation
*/
public static function assertObjectType($type): self
{
Utils::invariant(
$type instanceof self,
'Expected ' . Utils::printSafe($type) . ' to be a GraphQL Object type.'
);
return $type;
}
public function implementsInterface(InterfaceType $interfaceType): bool
{
if (! isset($this->interfaceMap)) {
$this->interfaceMap = [];
foreach ($this->getInterfaces() as $interface) {
/** @var Type&InterfaceType $interface */
$interface = Schema::resolveType($interface);
$this->interfaceMap[$interface->name] = $interface;
}
}
return isset($this->interfaceMap[$interfaceType->name]);
}
/**
* @return array<int, InterfaceType>
*/
public function getInterfaces(): array
{
if (! isset($this->interfaces)) {
$interfaces = $this->config['interfaces'] ?? [];
if (is_callable($interfaces)) {
$interfaces = $interfaces();
}
if ($interfaces !== null && ! is_array($interfaces)) {
throw new InvariantViolation(
sprintf('%s interfaces must be an Array or a callable which returns an Array.', $this->name)
);
}
/** @var array<int, InterfaceType> $interfaces */
$interfaces = $interfaces === null
? []
: array_map([Schema::class, 'resolveType'], $interfaces);
$this->interfaces = $interfaces;
}
return $this->interfaces;
}
/**
* @param mixed $value
* @param mixed $context
*
* @return bool|Deferred|null
*/
public function isTypeOf($value, $context, ResolveInfo $info)
{
return isset($this->config['isTypeOf'])
? $this->config['isTypeOf'](
$value,
$context,
$info
)
: null;
}
/**
* Validates type config and throws if one of type options is invalid.
* Note: this method is shallow, it won't validate object fields and their arguments.
*
* @throws InvariantViolation
*/
public function assertValid(): void
{
parent::assertValid();
Utils::invariant(
$this->description === null || is_string($this->description),
sprintf(
'%s description must be string if set, but it is: %s',
$this->name,
Utils::printSafe($this->description)
)
);
$isTypeOf = $this->config['isTypeOf'] ?? null;
Utils::invariant(
$isTypeOf === null || is_callable($isTypeOf),
sprintf('%s must provide "isTypeOf" as a function, but got: %s', $this->name, Utils::printSafe($isTypeOf))
);
foreach ($this->getFields() as $field) {
$field->assertValid($this);
}
}
}