在GraphQL更新上续集不返回任何内容 [英] Sequelize on GraphQL update not return anything

查看:86
本文介绍了在GraphQL更新上续集不返回任何内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

GraphQL使用Sequelize更新返回null.

GraphQL return null using Sequelize update.

updatePerson: {
  type: Person,
  args: {
    value: {
      type: UpdatePersonInputType
    },
    where: {
      type: WhereUpdatePersonInputType
    }
  },
  resolve(_, args) {
    return Db.models.persons.update( args.value, {
      where: args.where
    });
  }
},

这是我使用GraphiQL的请求

Here my request using 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更新时犯了错误.谁能解释会发生什么?

Maybe I make mistakes using Sequelize update. Can anyone explain what happens?

推荐答案

不好,我使用的是 MySQL Sequelize ,仅支持 PostgreSQL >如果需要返回affectedRows,但是如果使用 MySQL ,则只能返回affectedCount.

My bad, I'm using MySQL, Sequelize just support PostgreSQL if you need return affectedRows, but if you use MySQL you just can only return affectedCount.

http://docs.sequelizejs. com/en/latest/api/model/#updatevalues-options-promisearrayaffectedcount-affectedrows

这篇关于在GraphQL更新上续集不返回任何内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆