filecoin boost GraphQL API 查询

查询示例

查询失败交易

cpp 复制代码
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query":"query { deals(limit: 10, query: \"failed to get size of imported\") { deals { ID CreatedAt Message } } }"}' \
http://localhost:8080/graphql/query | jq

查询 取消交易

cpp 复制代码
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query":"mutation { dealCancel(id: \"ab12345c-5678-90de-12f3-45a6b78cd9ef\") }"}' \
http://localhost:8080/graphql/query | jq

查询 订单状态 Adding to Sector

cpp 复制代码
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query":"query { deals(limit: 2000) { deals { ID CreatedAt Message } } }"}' \
http://localhost:8080/graphql/query | jq | grep "Adding to Sector" | wc -l

参考

  1. GraphQL API
相关推荐
m0_748236835 天前
API 接口选择那个?RESTful、GraphQL、gRPC、WebSocket、Webhook
websocket·restful·graphql
_半夏曲15 天前
Java应用GraphQL的入门讲解
java·开发语言·graphql
killsime15 天前
PostgreSQL + hasura + Apollo + GraphQL + React + Antd
react.js·postgresql·graphql
爪哇学长25 天前
解锁API的无限潜力:RESTful、SOAP、GraphQL和Webhooks的应用前景
java·开发语言·后端·restful·graphql
雪域迷影1 个月前
Ubuntu22.04中使用CMake配置运行boost库示例程序
linux·c++·boost·ubuntu22.04
AiFlutter1 个月前
Java对接GraphQL
java·开发语言·graphql
Elastic 中国社区官方博客2 个月前
GraphQL 与 Elasticsearch 相遇:使用 Hasura DDN 构建可扩展、支持 AI 的应用程序
大数据·后端·elasticsearch·搜索引擎·全文检索·graphql·1024程序员节
罗小爬EX2 个月前
GraphQL系列 - 第2讲 Spring集成GraphQL
spring·graphql
罗小爬EX2 个月前
GraphQL系列 - 第1讲 GraphQL语法入门
数据库·后端·graphql