@@ -84,7 +84,7 @@ |
||
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | - * @return Field[]|Query[] |
|
| 87 | + * @return Query[] |
|
| 88 | 88 | */ |
| 89 | 89 | public function getFields() |
| 90 | 90 | { |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | - * @return Field[]|Query[] |
|
| 31 | + * @return Field[] |
|
| 32 | 32 | */ |
| 33 | 33 | public function getFields() |
| 34 | 34 | { |
@@ -42,8 +42,8 @@ |
||
| 42 | 42 | public function getDescription() |
| 43 | 43 | { |
| 44 | 44 | return 'The `String` scalar type represents textual data, represented as UTF-8 ' . |
| 45 | - 'character sequences. The String type is most often used by GraphQL to ' . |
|
| 46 | - 'represent free-form human-readable text.'; |
|
| 45 | + 'character sequences. The String type is most often used by GraphQL to ' . |
|
| 46 | + 'represent free-form human-readable text.'; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | } |
@@ -29,8 +29,8 @@ |
||
| 29 | 29 | public function getDescription() |
| 30 | 30 | { |
| 31 | 31 | return 'The `Float` scalar type represents signed double-precision fractional ' . |
| 32 | - 'values as specified by ' . |
|
| 33 | - '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
| 32 | + 'values as specified by ' . |
|
| 33 | + '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | } |
@@ -40,9 +40,9 @@ |
||
| 40 | 40 | public function getDescription() |
| 41 | 41 | { |
| 42 | 42 | return 'The `Int` scalar type represents non-fractional signed whole numeric ' . |
| 43 | - 'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' . |
|
| 44 | - 'represented in JSON as double-precision floating point numbers specified' . |
|
| 45 | - 'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
| 43 | + 'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' . |
|
| 44 | + 'represented in JSON as double-precision floating point numbers specified' . |
|
| 45 | + 'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).'; |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | } |
@@ -30,9 +30,9 @@ |
||
| 30 | 30 | public function getDescription() |
| 31 | 31 | { |
| 32 | 32 | return 'The `ID` scalar type represents a unique identifier, often used to ' . |
| 33 | - 'refetch an object or as key for a cache. The ID type appears in a JSON ' . |
|
| 34 | - 'response as a String; however, it is not intended to be human-readable. ' . |
|
| 35 | - 'When expected as an input type, any string (such as `"4"`) or integer ' . |
|
| 36 | - '(such as `4`) input value will be accepted as an ID.'; |
|
| 33 | + 'refetch an object or as key for a cache. The ID type appears in a JSON ' . |
|
| 34 | + 'response as a String; however, it is not intended to be human-readable. ' . |
|
| 35 | + 'When expected as an input type, any string (such as `"4"`) or integer ' . |
|
| 36 | + '(such as `4`) input value will be accepted as an ID.'; |
|
| 37 | 37 | } |
| 38 | 38 | } |
@@ -37,70 +37,70 @@ |
||
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | 39 | $config->getQuery() |
| 40 | - ->addField(new NodeField($fetcher)) |
|
| 41 | - ->addField('rebels', [ |
|
| 42 | - 'type' => new FactionType(), |
|
| 43 | - 'resolve' => function () { |
|
| 44 | - return TestDataProvider::getFaction('rebels'); |
|
| 45 | - } |
|
| 46 | - ]) |
|
| 47 | - ->addField('empire', [ |
|
| 48 | - 'type' => new FactionType(), |
|
| 49 | - 'resolve' => function () { |
|
| 50 | - return TestDataProvider::getFaction('empire'); |
|
| 51 | - } |
|
| 52 | - ]) |
|
| 53 | - ->addField('factions', [ |
|
| 54 | - 'type' => new ListType(new FactionType()), |
|
| 55 | - 'args' => [ |
|
| 56 | - 'names' => [ |
|
| 57 | - 'type' => new ListType(new StringType()) |
|
| 58 | - ] |
|
| 59 | - ], |
|
| 60 | - 'resolve' => function ($value = null, $args, $info) { |
|
| 61 | - return TestDataProvider::getByNames($args['names']); |
|
| 62 | - } |
|
| 63 | - ]); |
|
| 40 | + ->addField(new NodeField($fetcher)) |
|
| 41 | + ->addField('rebels', [ |
|
| 42 | + 'type' => new FactionType(), |
|
| 43 | + 'resolve' => function () { |
|
| 44 | + return TestDataProvider::getFaction('rebels'); |
|
| 45 | + } |
|
| 46 | + ]) |
|
| 47 | + ->addField('empire', [ |
|
| 48 | + 'type' => new FactionType(), |
|
| 49 | + 'resolve' => function () { |
|
| 50 | + return TestDataProvider::getFaction('empire'); |
|
| 51 | + } |
|
| 52 | + ]) |
|
| 53 | + ->addField('factions', [ |
|
| 54 | + 'type' => new ListType(new FactionType()), |
|
| 55 | + 'args' => [ |
|
| 56 | + 'names' => [ |
|
| 57 | + 'type' => new ListType(new StringType()) |
|
| 58 | + ] |
|
| 59 | + ], |
|
| 60 | + 'resolve' => function ($value = null, $args, $info) { |
|
| 61 | + return TestDataProvider::getByNames($args['names']); |
|
| 62 | + } |
|
| 63 | + ]); |
|
| 64 | 64 | |
| 65 | 65 | |
| 66 | 66 | $config->getMutation() |
| 67 | - ->addField( |
|
| 68 | - RelayMutation::buildMutation( |
|
| 69 | - 'introduceShip', |
|
| 70 | - [ |
|
| 71 | - new InputField(['name' => 'shipName', 'type' => new NonNullType(new StringType())]), |
|
| 72 | - new InputField(['name' => 'factionId', 'type' => new NonNullType(new StringType())]) |
|
| 73 | - ], |
|
| 74 | - [ |
|
| 75 | - 'newShipEdge' => [ |
|
| 76 | - 'type' => Connection::edgeDefinition(new ShipType(), 'newShip'), |
|
| 77 | - 'resolve' => function ($value) { |
|
| 78 | - $allShips = TestDataProvider::getShips(); |
|
| 79 | - $newShip = TestDataProvider::getShip($value['shipId']); |
|
| 67 | + ->addField( |
|
| 68 | + RelayMutation::buildMutation( |
|
| 69 | + 'introduceShip', |
|
| 70 | + [ |
|
| 71 | + new InputField(['name' => 'shipName', 'type' => new NonNullType(new StringType())]), |
|
| 72 | + new InputField(['name' => 'factionId', 'type' => new NonNullType(new StringType())]) |
|
| 73 | + ], |
|
| 74 | + [ |
|
| 75 | + 'newShipEdge' => [ |
|
| 76 | + 'type' => Connection::edgeDefinition(new ShipType(), 'newShip'), |
|
| 77 | + 'resolve' => function ($value) { |
|
| 78 | + $allShips = TestDataProvider::getShips(); |
|
| 79 | + $newShip = TestDataProvider::getShip($value['shipId']); |
|
| 80 | 80 | |
| 81 | - return [ |
|
| 82 | - 'cursor' => ArrayConnection::cursorForObjectInConnection($allShips, $newShip), |
|
| 83 | - 'node' => $newShip |
|
| 84 | - ]; |
|
| 85 | - } |
|
| 86 | - ], |
|
| 87 | - 'faction' => [ |
|
| 88 | - 'type' => new FactionType(), |
|
| 89 | - 'resolve' => function ($value) { |
|
| 90 | - return TestDataProvider::getFaction($value['factionId']); |
|
| 91 | - } |
|
| 92 | - ] |
|
| 93 | - ], |
|
| 94 | - function ($value, $args, $info) { |
|
| 95 | - $newShip = TestDataProvider::createShip($args['shipName'], $args['factionId']); |
|
| 81 | + return [ |
|
| 82 | + 'cursor' => ArrayConnection::cursorForObjectInConnection($allShips, $newShip), |
|
| 83 | + 'node' => $newShip |
|
| 84 | + ]; |
|
| 85 | + } |
|
| 86 | + ], |
|
| 87 | + 'faction' => [ |
|
| 88 | + 'type' => new FactionType(), |
|
| 89 | + 'resolve' => function ($value) { |
|
| 90 | + return TestDataProvider::getFaction($value['factionId']); |
|
| 91 | + } |
|
| 92 | + ] |
|
| 93 | + ], |
|
| 94 | + function ($value, $args, $info) { |
|
| 95 | + $newShip = TestDataProvider::createShip($args['shipName'], $args['factionId']); |
|
| 96 | 96 | |
| 97 | - return [ |
|
| 98 | - 'shipId' => $newShip['id'], |
|
| 99 | - 'factionId' => $args['factionId'] |
|
| 100 | - ]; |
|
| 101 | - } |
|
| 102 | - ) |
|
| 103 | - ); |
|
| 97 | + return [ |
|
| 98 | + 'shipId' => $newShip['id'], |
|
| 99 | + 'factionId' => $args['factionId'] |
|
| 100 | + ]; |
|
| 101 | + } |
|
| 102 | + ) |
|
| 103 | + ); |
|
| 104 | 104 | |
| 105 | 105 | /** https://github.com/graphql/graphql-relay-js/blob/master/src/__tests__/starWarsSchema.js */ |
| 106 | 106 | } |
@@ -223,6 +223,9 @@ discard block |
||
| 223 | 223 | return $this; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | + /** |
|
| 227 | + * @param string $name |
|
| 228 | + */ |
|
| 226 | 229 | public function getVariable($name) |
| 227 | 230 | { |
| 228 | 231 | return $this->hasVariable($name) ? $this->variables[$name] : null; |
@@ -266,7 +269,7 @@ discard block |
||
| 266 | 269 | } |
| 267 | 270 | |
| 268 | 271 | /** |
| 269 | - * @return array|VariableReference[] |
|
| 272 | + * @return VariableReference[] |
|
| 270 | 273 | */ |
| 271 | 274 | public function getVariableReferences() |
| 272 | 275 | { |
@@ -149,6 +149,9 @@ discard block |
||
| 149 | 149 | return [$this->getAlias($query) => $value]; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | + /** |
|
| 153 | + * @return AstFieldInterface |
|
| 154 | + */ |
|
| 152 | 155 | protected function resolveField(FieldInterface $field, AstFieldInterface $ast, $parentValue = null, $fromObject = false) |
| 153 | 156 | { |
| 154 | 157 | try { |
@@ -220,6 +223,9 @@ discard block |
||
| 220 | 223 | } |
| 221 | 224 | } |
| 222 | 225 | |
| 226 | + /** |
|
| 227 | + * @param \Youshido\GraphQL\Parser\Ast\Interfaces\ValueInterface $argumentValue |
|
| 228 | + */ |
|
| 223 | 229 | private function prepareArgumentValue($argumentValue, AbstractType $argumentType, Request $request) |
| 224 | 230 | { |
| 225 | 231 | switch ($argumentType->getKind()) { |
@@ -337,9 +337,9 @@ discard block |
||
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | $fakeField = new Field([ |
| 340 | - 'name' => $field->getName(), |
|
| 341 | - 'type' => $itemType, |
|
| 342 | - 'args' => $field->getArguments(), |
|
| 340 | + 'name' => $field->getName(), |
|
| 341 | + 'type' => $itemType, |
|
| 342 | + 'args' => $field->getArguments(), |
|
| 343 | 343 | ]); |
| 344 | 344 | |
| 345 | 345 | $result = []; |
@@ -441,9 +441,9 @@ discard block |
||
| 441 | 441 | } |
| 442 | 442 | |
| 443 | 443 | $fakeField = new Field([ |
| 444 | - 'name' => $field->getName(), |
|
| 445 | - 'type' => $resolvedType, |
|
| 446 | - 'args' => $field->getArguments(), |
|
| 444 | + 'name' => $field->getName(), |
|
| 445 | + 'type' => $resolvedType, |
|
| 446 | + 'args' => $field->getArguments(), |
|
| 447 | 447 | ]); |
| 448 | 448 | |
| 449 | 449 | return $this->resolveObject($fakeField, $ast, $resolvedValue, true); |