Graph 介绍 graphql 语法 GraphQL 的操作类型可以是 query、mutation 或 subscription,描述客户端希望进行什么样的操作 query 查询:获取数据,比如查找,CRUD 中的 R mutation 变更:对数据进行变更,比如增加、删除、修改,CRUD 中的 CUD substription 订阅:当数据发生更改,进行消息推送 参考链接 graphql官网: https://graphql.cn/learn/ graphql : https://chinese.freecodecamp.org/news/a-detailed-guide-to-graphql/ 官方api介绍:https://thegraph.com/docs/developer/querying-from-your-app API使用github:https://github.com/prisma-labs/graphql-request