我正在研究GraphQL JS tutorial并尝试了解变量如何与查询一起使用。
在Object Types section我可以正常工作:
我的server.js
文件:
const express = require('express')
const graphqlHTTP = require('express-graphql')
const { buildSchema } = require('graphql')
const app = express()
const schema = buildSchema(`
type RandomDie {
numSides: Int!
rollOnce: Int!
roll(numRolls: Int!): [Int]
}
type Query {
getDie(numSides: Int): RandomDie
}
`)
class RandomDie {
constructor(numSides) {
this.numSides = numSides;
}
rollOnce() {
return 1 + Math.floor(Math.random() * this.numSides);
}
roll({numRolls}) {
var output = [];
for (var i = 0; i < numRolls; i++) {
output.push(this.rollOnce());
}
return output;
}}
const root = {
getDie: ({numSides}) => {
return new RandomDie(numSides || 6);
},
}
module.exports = root
app.use('/graphql', graphqlHTTP({
schema: schema,
rootValue: root,
graphiql: true,
}))
app.listen(4000)
console.log('Running a GraphQL API server at localhost:4000/graphql')
我的random.json
文件:
{
"query": "query RollDice($sides: Int) { getDie(numSides: $sides) { rollOnce roll(numRolls: 3) }}",
"variables": {
"sides": 6
}
}
如果我在这里运行此命令:
http http://localhost:4000/graphql < ./random.json
我得到了这个输出:
{
"data": {
"getDie": {
"roll": [
1,
6,
2
],
"rollOnce": 5
}
}
}
我的问题是:
如何将3
的{{1}}设置为numRolls
文件中的变量?
我试过了:
random.json
但得到了这个错误:
{
"query": "query RollDice($sides: Int, $rolls: Int) { getDie(numSides: $sides) { rollOnce roll(numRolls: $rolls) }}",
"variables": {
"sides": 6,
"rolls": 3
}
}
答案 0 :(得分:1)
定义变量时,变量类型必须匹配它们正在替换的输入类型完全。虽然您的$rolls
变量和numRolls
输入类型都是整数,但您已将roll定义为可空整数(Int),而在模式中,您已将输入定义为“非空” “整数(Int!)
type RandomDie {
roll(numRolls: Int!): [Int]
}
type Query {
getDie(numSides: Int): RandomDie
}
请注意,numSides
只是Int
而numRolls
被定义为Int!
,这就是{{1}不需要!
的原因(实际上使$sides
成为$sides
也会引发错误!)
非null是一个包装器,告诉GraphQL输入不能为null(对于输入类型)或返回的字段不能为null(对于数据类型)。要记住的是,非null包装器将它包装的类型从GraphQL的角度转换为不同的类型,因此Int!
!== Int
。