将参数改为 非关键字就可以了
#登录状态修改密码
mutation updateUserPassword($oldPwd: String!, $new: String!) {
updateUserPassword(old_password: $oldPwd, password: $new) {
id
}
}
原因是使用了 new 关键字
#登录状态修改密码
mutation updateUserPassword($oldPwd: String!, $newPwd: String!) {
updateUserPassword(old_password: $oldPwd, password: $newPwd) {
id
}
}
网友评论