我已经在php 7.2和ubuntu 16上安装了magento 2.3,并想从浏览器graphql客户端测试graphql api,例如:-
网址:-http://localhost/magento2/graphql
{
category (
id: 2
) {
id
level
name
breadcrumbs {
category_id
category_name
category_level
category_url_key
}
}
}
但是我遇到了错误:-Exception #0 (GraphQL\Error\Error): Type "int" not found in document
。
答案 0 :(得分:0)
在您的模式定义中似乎是一个错字!您应该使用' Int '而不是' int '!