赞
踩
除了使用GraphiQL客户端工具以及PostMan外,也可以使用HTTP GET和POST来发送REST请求获取数据,请求格式如下:
示例1
GET:
http://localhost:8089/graphql?query={getTypeList{status statusDesc data{name}}}
这个等同于在工具里面输入:
{
getTypeList {
status
statusDesc
data {
name
}
}
}
示例2
POST:
http://localhost:8089/graphql
Content-Type: application/json
RequestBody:
{
"query": "{getTypeList{status statusDesc data{name}}}",
"operationName": "",
"variables": {}
}
这个等同于在工具里面输入:
{
getTypeList {
status
statusDesc
data {
name
}
}
}
以上两个示例中,主要用到三个参数:
query这个里面是压缩后的GraphQL查询语句,必填
variables 查询语言中使用到的对象输入类型的值,选填
operationName 操作名称,选填,查询语句中有多个操作时必填,一般无特殊情况置空””即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。