Zend Expressive GraphiQL extension
GraphQL in-browser interface to explore graphql server, (*1)
Assets
You need to copy the graphql assets in your public assets folder., (*2)
Template
A twig template is provided but you can write your own template using the template engines supported by zend-expressive, (*3)
If you want to override the default configuration, add a configuration for graphql::graphiql template in your templates.global.php
and place the graphiql.html.php, (*4)
'templates' => [
'extension' => 'html.php', //<-- Your extension
'paths' => [
'graphql' => ['templates/graphql'],
...
],
],