美文网首页
Graphql & not a valid name: new

Graphql & not a valid name: new

作者: 南窗云 | 来源:发表于2018-06-20 18:20 被阅读0次

    将参数改为 非关键字就可以了

    #登录状态修改密码
    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
      }
    }
    

    相关文章

      网友评论

          本文标题:Graphql & not a valid name: new

          本文链接:https://www.haomeiwen.com/subject/jwwxyftx.html