如何在连接到 mLab 的 GraphQL 中为“更新”数据编写 Mutation
Posted
技术标签:
【中文标题】如何在连接到 mLab 的 GraphQL 中为“更新”数据编写 Mutation【英文标题】:how to write Mutation for „update” data in GraphQL connected to mLab 【发布时间】:2018-11-10 08:04:12 【问题描述】:我正在学习 GraphQL 突变。我将数据保存在 mLab 上。我使用 GraphiQL 进行查询输出。我不知道如何为“更新”数据编写 Mutation。现在我有适当的“创建”和“删除”突变:
schema.js
addMovie:
type: MovieType,
args:
title: type: new GraphQLNonNull(GraphQLString),
genre: type: new GraphQLNonNull(GraphQLString)
,
resolve(parent, args)
let new_movie = new Movie(
title: args.title,
genre: args.genre
);
return new_movie.save();
GraphiQL
mutation
addMovie(title: "Goodfellas", genre: "Drama")
title
genre
schema.js
deleteMovie:
type: MovieType,
args:
id: type: new GraphQLNonNull(GraphQLString)
,
resolve(parent, args)
return Movie.findOneAndDelete(args.id);
GraphiQL
mutation
deleteMovie(id: "5c0djut25d81cbq17356628y")
id
我正在尝试并尝试编写“更新”突变,到目前为止我所做的最好的是:
schema.js
editMovie:
type: MovieType,
args:
id: type: new GraphQLNonNull(GraphQLString),
title: type: GraphQLString,
genre: type: GraphQLString
,
resolve(parent, args)
return Movie.findOneAndUpdate(args.id);
GraphiQL
mutation
editMovie(id: "5c0djut25d81cbq17356628y", title: "Goodfellas", genre: "Crime")
id
上面的 Mutation 不会产生任何错误,但它仍然会返回
genre: "Drama"
而不是
genre: "Crime"
【问题讨论】:
【参考方案1】:好的,我知道了:
变异:
updateMovie:
type: MovieType,
args:
id: type: new GraphQLNonNull(GraphQLID),
title: type: new GraphQLNonNull(GraphQLString),
genre: type: new GraphQLNonNull(GraphQLString)
,
resolve(parent, args)
return Movie.findByIdAndUpdate(args.id, $set: title: args.title, genre: args.genre).exec();
查询:
mutation
updateMovie(id: "3b0fhybd5d12fec157923290", title: "Kill Bill", genre: "crime")
id
title
genre
【讨论】:
以上是关于如何在连接到 mLab 的 GraphQL 中为“更新”数据编写 Mutation的主要内容,如果未能解决你的问题,请参考以下文章
当 MLAB 仅提供字符串 URI 时,有人如何将他们的 MLAB mongodb 数据库连接到 robomongo [重复]