我正在使用这个Laravel graphQL实现:https://github.com/rebing/graphql-laravel,它使用了这个graphiQL实现:https://github.com/graphql/graphiql
我正在尝试通过https://my_IP/graphiql
路线使用graphiQL探索我的graphQL模式,但它只是说NO SCHEMA AVAILABLE
如下:
但是,它应该显示以下文档:https://graphql.org/swapi-graphql
我在config/graphql.php
中有架构声明,如下所示:
'schemas' => [
'default' => [
'query' => [
'users' => \myPath\UsersQuery::class,
'subscribers' => \myPath\SubscribersQuery::class,
...
],
'mutation' => [
...
],
'middleware' => [],
'method' => ['get', 'post'],
],
],
我是否错过了一些配置以允许进行文档探索?