所以我试图在MongoDB中创建一个User集合,并使用GraphQL和mongoose对它进行查询。
我已在路径“pathToServer \ server \ models \ user.js'”中创建了我的用户架构。它看起来像这样:
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const userSchema = new Schema({
name: {
firstName: String,
lastName: String,
},
email: String,
password: String,
})
module.exports = mongoose.model('User', userSchema);
我已经创建了一个GraphQL类型,目前我已经在路径“pathToServer \ server \ schema \ types \ user.js'它看起来像这样:
const graphql = require('graphql');
const {GraphQLObjectType, GraphQLList, GraphQLInt, GraphQLID, GraphQLString, GraphQLSchema, GraphQLNonNull} = graphql;
const UserType = new GraphQLObjectType({
name: 'User',
fields: () => ({
id: {type: GraphQLID},
email: {type: GraphQLString},
name: new GraphQLObjectType({
firstName: {type: GraphQLString},
lastName: {type: GraphQLString}
})
})
});
module.exports = UserType;
最后,我的GraphQL模式中包含路径中的查询和变异&pathaeServer \ server \ schema \ schema.js' :
const graphql = require('graphql');
const {GraphQLObjectType, GraphQLList, GraphQLInt, GraphQLID, GraphQLString, GraphQLSchema, GraphQLNonNull} = graphql;
const User = require('../models/user');
const UserType = require('./types/user');
const RootQuery = new GraphQLObjectType({
name: 'RootQueryType',
fields: {
user: {
type: UserType,
args: {
id: {
type: GraphQLID
}
},
resolve(parent, args){
return User.findById(args.id);
}
},
users: {
type: new GraphQLList(UserType),
resolve(parent, args){
return User.find({})
}
}
}
})
const Mutation = new GraphQLObjectType({
name: 'Mutation',
fields: {
addUser: {
type: UserType,
args: {
name: {
firstName: {type: new GraphQLNonNull(GraphQLString)},
lastName: {type: new GraphQLNonNull(GraphQLString)}
},
email: {type: new GraphQLNonNull(GraphQLString)},
password: {type: new GraphQLNonNull(GraphQLString)}
},
resolve(parent, args){
let user = new User({
name: args.name,
email: args.email,
password: args.password,
});
return user.save();
}
}
}
})
module.exports = new GraphQLSchema({
query: RootQuery,
mutation: Mutation
})
问题是,每当我启动服务器时,它都会抛出一个错误:
Error: Must provide name.
at invariant (pathToServer\server\node_modules\graphql\jsutils\invariant.js:19:11)
at new GraphQLObjectType (pathToServer\server\node_modules\graphql\type\definition.js:499:66)
at fields (pathToServer\server\schema\types\user.js:10:15)
at resolveThunk (pathToServer\server\node_modules\graphql\type\definition.js:370:40)
at defineFieldMap (pathToServer\server\node_modules\graphql\type\definition.js:532:18)
at GraphQLObjectType.getFields (pathToServer\server\node_modules\graphql\type\definition.js:506:44)
at typeMapReducer (pathToServer\server\node_modules\graphql\type\schema.js:232:38)
at pathToServer\server\node_modules\graphql\type\schema.js:239:20
at Array.forEach (<anonymous>)
at typeMapReducer (pathToServer\server\node_modules\graphql\type\schema.js:232:51)
at Array.reduce (<anonymous>)
at new GraphQLSchema (pathToServer\server\node_modules\graphql\type\schema.js:122:28)
at Object.<anonymous> (pathToServer\server\schema\schema.js:79:18)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
也许我没有正确定义名称字段?我认为可以区别对待,因为我的模型中的名称字段是包含字段firstName和lastName的对象。
请你看一下吗?
提前致谢!
修改 我从
编辑用户类型const UserType = new GraphQLObjectType({
name: 'User',
fields: () => ({
id: {type: GraphQLID},
email: {type: GraphQLString},
name: new GraphQLObjectType({
firstName: {type: GraphQLString},
lastName: {type: GraphQLString}
})
})
});
到
const UserType = new GraphQLObjectType({
name: 'User',
fields: () => ({
id: {type: GraphQLID},
email: {type: GraphQLString},
name: {
firstName: {type: GraphQLString},
lastName: {type: GraphQLString}
}
})
});
现在服务器启动了,但它在graphiql中给了我这个错误:
{
"errors": [
{
"message": "The type of User.name must be Output Type but got: undefined.\n\nThe type of Mutation.addUser(name:) must be Input Type but got: undefined."
}
]
}
答案 0 :(得分:0)
您在原始尝试中走在正确的轨道上。部分问题是您传递到name
的{{1}}字段的类型需要完全定义。也就是说,它不仅需要UserType
属性,还需要fields
属性本身。另一个问题是name
需要将其类型明确设置为属性。为了便于阅读和重用,我将使NameType成为一个单独的变量:
User.name