阅读导航
Magento2.3开始,Magento全面引入GraphQl构建API
什么是 GraphQl
本文假设已经了解了GraphQl.
网上描述最多的是一种用于 API 的查询语言
简单提取了如下特点:
– 语法易于理解
– 准确获取数据
– 数据没有冗余
– 能应对业务变化
– 减少API请求次数
Magento2.3增加的GraphQl相关模块
BundleGraphQl
CatalogGraphQl
CatalogInventoryGraphQl
CatalogUrlRewriteGraphQl
CmsGraphQl
CmsUrlRewriteGraphQl
ConfigurableProductGraphQl
CustomerGraphQl
DirectoryGraphQl
DownloadableGraphQl
EavGraphQl
GraphQl
GroupedProductGraphQl
QuoteGraphQl
SalesGraphQl
SendFriendGraphQl
StoreGraphQl
SwatchesGraphQl
TaxGraphQl
ThemeGraphQl
UrlRewriteGraphQl
WeeeGraphQl
WishlistGraphQl
Magento GraphQl API调用
推荐用chrome的调试插件ChromeiQL测试, 截图如下:
注意:
1. magento后台需要开启游客访问API的权限
1. 红圈部分 需要切换到magento的开发模式developer
1. 这里忽略了授权部分,大部分API接口需要特定权限才能访问
你也可以用常用的API测试工具测试
POST https://www.magento2.top/graphql
Headers Content-Type:application/json
body参数
{
"query": "{cmsPage (id:2){title content}}"
}
上面参数意思是查询cmsPage id=2 的数据,只需要返回title和content字段的值
返回结果
{
"data": {
"cmsPage": {
"title": "Magento2演示",
"content": "<p>CMS homepage content goes here.</p>\r\n"
}
}
}
调试插件 ChromeiQL
安装地址https://chrome.google.com/webstore/detail/chromeiql/fkkiamalmpiidkljmicmjfbieiclmeij