CustomScalarType.php
1 month ago
EnumType.php
1 month ago
Error.php
1 month ago
InputObjectType.php
1 month ago
InterfaceType.php
1 month ago
ObjectType.php
1 month ago
Schema.php
1 month ago
Type.php
1 month ago
aliases.php
1 month ago
Schema.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Automattic\WooCommerce\Api\Infrastructure\Schema; |
| 6 | |
| 7 | /** |
| 8 | * Stable subclass of the underlying GraphQL engine's Schema, used by |
| 9 | * autogenerated GraphQLController subclasses. |
| 10 | * |
| 11 | * The constructor accepts the same associative-array config the current |
| 12 | * engine (webonyx) documents (keys: `query`, `mutation`, `types`, etc.). |
| 13 | * Extending the engine class means its executor treats an instance of this |
| 14 | * class identically to its own parent, so no adaptation is needed at runtime. |
| 15 | */ |
| 16 | class Schema extends \Automattic\WooCommerce\Vendor\GraphQL\Type\Schema { |
| 17 | } |
| 18 |