扫一扫分享
GraphQL基于一个非常简单的HTTP事务,它使用query和向端点发送请求variables。 许多库需要复杂的堆栈才能提出简单的请求。在任何你不使用react,Relay的项目中,你需要一个更简单的客户端来管理你的查询并提出一个简单的请求。
bower install graphql.js --save
或
npm install graphql.js --save
# or
yarn add graphql.js
使用
// Connect...
var graph = graphql("/graphql")
// Prepare...
graph.fragment({
user: `on User {
id,
name
}`
})
const allUsers = graph(`query { allUsers { ...user } }`)
const createUser = graph(`mutation (@autodeclare) {
createUser($firstName, $lastName) { ...user }
}`)
await createUser({
firstName: "John",
lastName: "Doe"
})
const users = await allUsers()
console.log(users)
// {
// "allUsers": [{ "id": 1, "name": "John Doe" }]
// }
手机预览