Laravel GraphiQL“文档浏览器”说“无可用模式”

时间:2019-11-04 16:00:08

标签: php laravel graphql documentation graphiql

我正在使用这个Laravel graphQL实现:https://github.com/rebing/graphql-laravel,它使用了这个graphiQL实现:https://github.com/graphql/graphiql

我正在尝试通过https://my_IP/graphiql路线使用graphiQL探索我的graphQL模式,但它只是说NO SCHEMA AVAILABLE如下:

enter image description here

但是,它应该显示以下文档:https://graphql.org/swapi-graphql

我在config/graphql.php中有架构声明,如下所示:

'schemas' => [
        'default' => [
            'query' => [
                'users' => \myPath\UsersQuery::class,
                'subscribers' => \myPath\SubscribersQuery::class,
                ...
            ],
            'mutation' => [
                ...
            ],
            'middleware' => [],
            'method' => ['get', 'post'],
        ],
    ],

我是否错过了一些配置以允许进行文档探索?

0 个答案:

没有答案