rromanovsky/graphiql-middleware

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

0.2.0 2017-11-08 20:37 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:13:31 UTC


README

You can add a GraphiQL interface to your project with this PSR-7 Middleware

Install

composer require rromanovsky/graphiql-middleware

Usage

  • Slim
    use GraphiQLMiddleware\GraphiQLMiddleware;
    // By default the middleware will be executed on '/graphiql' route
    $app->add(new GraphiQLMiddleware());