gpt4 book ai didi

javascript - 注册突变时出现 Prisma graphql 错误

转载 作者:行者123 更新时间:2023-11-30 07:31:57 33 4
gpt4 key购买 nike

我试图在 playground 中进行注册突变,但我遇到了一个我无法理解的错误,尝试了很多方法来修复它,比如通过从 prisma token 获取 token 来添加授权 header ,非常卡住..

enter image description here

最佳答案

如果您的整个依赖关系树中有两个不同版本的 graphql,则会发生该错误。

package.json 的依赖项和开发依赖项需要使用相同版本的 graphql,并且所有这些依赖项都需要有 graphql作为他们的同伴依赖,像这样:

  "peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
}

请注意,在您自己的 package.json 中,您不需要对等依赖项。以下是满足我上面提到的要求的 package.json 中的依赖项示例:

  "dependencies": {
"graphql-yoga": "1.4.3",
"prisma-binding": "1.5.16"
},
"devDependencies": {
"graphql-cli": "2.15.8",
"prisma": "1.3.3"
}

我从 here 复制了依赖项.

将您的 package.json 更新为上述依赖项,然后 rm -rf node_modules yarn.locknpm installyarn

关于javascript - 注册突变时出现 Prisma graphql 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48769019/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com