Sequelize on GraphQL update not return anything
问题 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 }); } }, Here my request using GraphiQL mutation { updatePerson(value: {firstName: "John", lastName: "Doe", email: "johndoe@example.com"}, where: {id: 1}){ id firstName lastName email } } and this the result { "data": { "updatePerson": { "id":