Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 476 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 476 Bytes

GraphiQL PSR-7 Middleware

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());