我目前正在尝试解决一个引用成分的简单食谱列表。
数据布局如下所示:
type Ingredient {
name: String!
amount: Int!
unit: Unit!
recipe: Recipe
}
type Recipe {
id: Int!
name: String!
ingredients: [Ingredient]!
steps: [String]!
pictureUrl: String!
}
据我了解,我的解析器应该如下所示:第一个解析配方,第二个解析配方中的成分字段。它可以(根据我的理解)使用 recipe 提供的参数。在我的食谱对象中,成分由 id (int) 引用,所以这应该是参数(至少我是这么认为的)。
var root = {
recipe: (argument) => {
return recipeList;
},
Recipe: {
ingredients: (obj, args, context) => {
//resolve ingredients
}
},
这些解析器像这样传递给应用程序:
app.use('/graphql', graphqlHTTP({
schema: schema,
graphiql: true,
rootValue: root,
}));
但是,我的解析器似乎没有被调用。我希望在我的查询中查询时即时解决这些成分。
端点工作,但只要我查询成分,"message": "Cannot return null for non-nullable field Ingredient.name.",
就会返回一条错误消息。
当试图在我的解析器中记录传入的参数时,我可以看到它永远不会被执行。不幸的是,当我像我一样使用 express-graphql 时,我找不到如何使用它的示例。
如何在 express-graphQL 中为嵌套类型编写单独的解析器?