dr-schopalopp/graphiql-middleware

GraphiQL PSR-15 Middleware based on https://github.com/graphql/graphiql

v0.2.0 2021-03-07 21:38 UTC

This package is auto-updated.

Last update: 2024-04-13 21:04:23 UTC


README

Latest Version Software License

Add a GraphiQL interface to your application with this PSR-15 middleware.

This is basically a copy of graphiql-middleware adjusted for PSR-15.

Install

composer require dr-schopalopp/graphiql-middleware

Usage

This middleware was developed in a slim project, but it should work with any other PSR-15 compatible framework.

Slim 4

// app/dependencies.php

use DrSchopalopp\GraphiQLMiddleware\GraphiQLMiddleware;

return function (ContainerBuilder $containerBuilder) {
    $containerBuilder->addDefinitions([
        // ...
        
        GraphiQLMiddleware::class => function () {
            return new GraphiQLMiddleware();
        }
        
        // ...
    ]);
};
// app/middleware.php

use DrSchopalopp\GraphiQLMiddleware\GraphiQLMiddleware;

return function (App $app) {
    // ...
    
    $app->add(GraphiQLMiddleware::class);
    
    // ...
};
// app/routes.php

return static function (App $app) {
    // ...

    // dummy route necessary otherwise you will get an HTTP 405 Method Not Allowed error 
    $app->get('/graphiql', function (Request $request, Response $response) {
        return $response;
    });
    
    // ...
};

see HTTP 405 Method Not Allowed for details

License

The MIT License (MIT). Please see License File for more information.