|
| 1 | +<?php |
| 2 | +use GraphQL\GraphQL; |
| 3 | +use GraphQL\Type\Schema; |
| 4 | +use TheCodingMachine\GraphQLite\SchemaFactory; |
| 5 | +use TheCodingMachine\GraphQLite\Context\Context; |
| 6 | + |
| 7 | +use Symfony\Component\Cache\Simple\FilesystemCache; |
| 8 | +use Mouf\Picotainer\Picotainer; |
| 9 | +use GraphQL\Utils\SchemaPrinter; |
| 10 | +use App\Controllers\MyController; |
| 11 | + |
| 12 | +require_once __DIR__ . '/vendor/autoload.php'; |
| 13 | + |
| 14 | +// $cache is any PSR-16 compatible cache. |
| 15 | +$cache = new FilesystemCache(); |
| 16 | + |
| 17 | +// $container is any PSR-11 compatible container which has |
| 18 | +// been populated with your controller classes. |
| 19 | +$container = new Picotainer([ |
| 20 | + MyController::class => function() { |
| 21 | + return new MyController(); |
| 22 | + }, |
| 23 | +]); |
| 24 | + |
| 25 | +$factory = new SchemaFactory($cache, $container); |
| 26 | +$factory->addControllerNamespace('App\\Controllers') |
| 27 | + ->addTypeNamespace('App'); |
| 28 | + |
| 29 | +$schema = $factory->createSchema(); |
| 30 | + |
| 31 | +$rawInput = file_get_contents('php://input'); |
| 32 | +$input = json_decode($rawInput, true); |
| 33 | +$query = $input['query']; |
| 34 | +$variableValues = isset($input['variables']) ? $input['variables'] : null; |
| 35 | + |
| 36 | +$result = GraphQL::executeQuery($schema, $query, null, new Context(), $variableValues); |
| 37 | +$output = $result->toArray(); |
| 38 | + |
| 39 | +header('Content-Type: application/json'); |
| 40 | +echo json_encode($output) . "\n"; |
| 41 | + |
0 commit comments