Getting started with any framework
If you are using Symfony 4.x, checkout the Symfony bundle.
Installation
Open a terminal in your current project directory and run:
$ composer require thecodingmachine/graphqlite
Requirements
In order to bootstrap GraphQLite, you will need:
- A PSR-11 compatible container
- A PSR-16 cache
Additionally, you will have to route the HTTP requests to the underlying GraphQL library.
GraphQLite relies on the webonyx/graphql-php library internally. This library plays well with PSR-7 requests and there is a PSR-15 middleware available.
Integration
Webonyx/graphql-php library requires a Schema in order to resolve
GraphQL queries. We provide a SchemaFactory
class to create such a schema:
use TheCodingMachine\GraphQLite\SchemaFactory;
// $cache is a PSR-16 compatible cache
// $container is a PSR-11 compatible container
$factory = new SchemaFactory($cache, $container);
$factory->addControllerNamespace('App\\Controllers\\')
->addTypeNamespace('App\\');
$schema = $factory->createSchema();
You can now use this schema with Webonyx GraphQL facade or the StandardServer class.
The SchemaFactory
class also comes with a number of methods that you can use to customize your GraphQLite settings.
// Configure an authentication service (to resolve the @Logged annotations).
$factory->setAuthenticationService(new VoidAuthenticationService());
// Configure an authorization service (to resolve the @Right annotations).
$factory->setAuthorizationService(new VoidAuthorizationService());
// Change the naming convention of GraphQL types globally.
$factory->setNamingStrategy(new NamingStrategy());
// Add a custom type mapper.
$factory->addTypeMapper($typeMapper);
// Add custom options to the Webonyx underlying Schema.
$factory->setSchemaConfig($schemaConfig);
Minimal example
The smallest working example using no framework is:
<?php
use GraphQL\GraphQL;
use GraphQL\Type\Schema;
use TheCodingMachine\GraphQLite\SchemaFactory;
// $cache is a PSR-16 compatible cache.
// $container is a PSR-11 compatible container.
$factory = new SchemaFactory($cache, $container);
$factory->addControllerNamespace('App\\Controllers\\')
->addTypeNamespace('App\\');
$schema = $factory->createSchema();
$rawInput = file_get_contents('php://input');
$input = json_decode($rawInput, true);
$query = $input['query'];
$variableValues = isset($input['variables']) ? $input['variables'] : null;
$result = GraphQL::executeQuery($schema, $query, null, null, $variableValues);
$output = $result->toArray();
header('Content-Type: application/json');
echo json_encode($output);
Advanced example
When using a framework, you will need a way to route your HTTP requests to the webonyx/graphql-php
library.
By chance, it plays well with PSR-7 requests and there is a PSR-15 middleware available.
In this example, we will focus on getting a working version of GraphQLite using:
- Zend Stratigility as a PSR-7 server
phps-cans/psr7-middleware-graphql
to route PSR-7 requests to the GraphQL enginemouf/picotainer
(a micro-container) for the PSR-11 containersymfony/cache
for the PSR-16 cache
The choice of the libraries is really up to you. You can adapt it based on your needs.
composer.json
{
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"thecodingmachine/graphqlite": "^3",
"phps-cans/psr7-middleware-graphql": "^0.2",
"middlewares/payload": "^2.1",
"zendframework/zend-diactoros": "^2",
"zendframework/zend-stratigility": "^3",
"zendframework/zend-httphandlerrunner": "^1.0",
"mouf/picotainer": "^1.1",
"symfony/cache": "^4.2"
},
"minimum-stability": "dev",
"prefer-stable": true
}
index.php
<?php
use Laminas\Diactoros\Response;
use Laminas\Diactoros\ServerRequest;
use Laminas\Diactoros\ServerRequestFactory;
use Zend\HttpHandlerRunner\Emitter\SapiStreamEmitter;
use Zend\Stratigility\Middleware\ErrorResponseGenerator;
use Zend\Stratigility\MiddlewarePipe;
use Laminas\Diactoros\Server;
use Zend\HttpHandlerRunner\RequestHandlerRunner;
require_once __DIR__ . '/vendor/autoload.php';
$container = require 'config/container.php';
$serverRequestFactory = [ServerRequestFactory::class, 'fromGlobals'];
$errorResponseGenerator = function (Throwable $e) {
$generator = new ErrorResponseGenerator();
return $generator($e, new ServerRequest(), new Response());
};
$runner = new RequestHandlerRunner(
$container->get(MiddlewarePipe::class),
new SapiStreamEmitter(),
$serverRequestFactory,
$errorResponseGenerator
);
$runner->run();
Here we are initializing a Zend RequestHandler
(it receives requests) and we pass it to a Zend Stratigility MiddlewarePipe
.
This MiddlewarePipe
comes from the container declared in the config/container.php
file:
config/container.php
<?php
use GraphQL\Server\StandardServer;
use GraphQL\Type\Schema;
use Mouf\Picotainer\Picotainer;
use PsCs\Middleware\Graphql\WebonyxGraphqlMiddleware;
use Psr\Container\ContainerInterface;
use Psr\SimpleCache\CacheInterface;
use Symfony\Component\Cache\Simple\ApcuCache;
use TheCodingMachine\GraphQLite\SchemaFactory;
use Laminas\Diactoros\ResponseFactory;
use Laminas\Diactoros\StreamFactory;
use Zend\Stratigility\MiddlewarePipe;
// Picotainer is a minimalist PSR-11 container.
return new Picotainer([
MiddlewarePipe::class => function(ContainerInterface $container) {
$pipe = new MiddlewarePipe();
// JsonPayload converts JSON body into a parser PHP array.
$pipe->pipe(new JsonPayload());
$pipe->pipe($container->get(WebonyxGraphqlMiddleware::class));
return $pipe;
},
// The WebonyxGraphqlMiddleware is a PSR-15 compatible
// middleware that exposes Webonyx schemas.
WebonyxGraphqlMiddleware::class => function(ContainerInterface $container) {
return new WebonyxGraphqlMiddleware(
$container->get(StandardServer::class),
new ResponseFactory(),
new StreamFactory()
);
},
StandardServer::class => function(ContainerInterface $container) {
return new StandardServer([
'schema' => $container->get(Schema::class)
]);
},
CacheInterface::class => function() {
return new ApcuCache();
},
Schema::class => function(ContainerInterface $container) {
// The magic happens here. We create a schema using GraphQLite SchemaFactory.
$factory = new SchemaFactory($container->get(CacheInterface::class), $container);
$factory->addControllerNamespace('App\\Controllers\\');
$factory->addTypeNamespace('App\\');
return $factory->createSchema();
}
]);
Now, we need to add a first query and therefore create a controller.
The application will look into the App\Controllers
namespace for GraphQLite controllers.
It assumes that the container has an entry whose name is the controller's fully qualified class name.
src/Controllers/MyController.php
namespace App\Controllers;
use TheCodingMachine\GraphQLite\Annotations\Query;
class MyController
{
/**
* @Query
*/
public function hello(string $name): string
{
return 'Hello '.$name;
}
}
config/container.php
use App\Controllers\MyController;
return new Picotainer([
// ...
// We declare the controller in the container.
MyController::class => function() {
return new MyController();
},
]);
And we are done! You can now test your query using your favorite GraphQL client.