Sequelize on GraphQL update not return anything
Sequelize on GraphQL update not return anything
GraphQL return null 使用 Sequelize 更新。
updatePerson: {
type: Person,
args: {
value: {
type: UpdatePersonInputType
},
where: {
type: WhereUpdatePersonInputType
}
},
resolve(_, args) {
return Db.models.persons.update( args.value, {
where: args.where
});
}
},
这里是我使用 GraphiQL 的请求
mutation {
updatePerson(value: {firstName: "John", lastName: "Doe", email: "johndoe@example.com"}, where: {id: 1}){
id
firstName
lastName
email
}
}
这就是结果
{
"data": {
"updatePerson": {
"id": null,
"firstName": null,
"lastName": null,
"email": null
}
}
}
也许我在使用 Sequelize 更新时犯了错误。谁能解释一下发生了什么?
不好意思,我用的是MySQL,Sequelize只是支持PostgreSQL 如果你需要 return affectedRows
,但是如果你使用 MySQL 你就只能 return affectedCount
。
GraphQL return null 使用 Sequelize 更新。
updatePerson: {
type: Person,
args: {
value: {
type: UpdatePersonInputType
},
where: {
type: WhereUpdatePersonInputType
}
},
resolve(_, args) {
return Db.models.persons.update( args.value, {
where: args.where
});
}
},
这里是我使用 GraphiQL 的请求
mutation {
updatePerson(value: {firstName: "John", lastName: "Doe", email: "johndoe@example.com"}, where: {id: 1}){
id
firstName
lastName
email
}
}
这就是结果
{
"data": {
"updatePerson": {
"id": null,
"firstName": null,
"lastName": null,
"email": null
}
}
}
也许我在使用 Sequelize 更新时犯了错误。谁能解释一下发生了什么?
不好意思,我用的是MySQL,Sequelize只是支持PostgreSQL 如果你需要 return affectedRows
,但是如果你使用 MySQL 你就只能 return affectedCount
。