我正在使用棱镜图像1.34 我在尝试使用mongodb atlas实现pyramida.exists方法时遇到了一个小问题。
type Business {
_id: ID! @id
name: String!
desc: String!
published: Boolean!
author: User! @relation(name: "BusinessUser", link: INLINE)
async updateBusiness(parent, args, { prisma, request }, info) {
const postExists = await prisma.exists.Business({
_id: args.id,
})
if (!postExists) {
throw new Error('Unable to update post')
}
return prisma.mutation.updateBusiness({
where: {
_id: args.id
},
data: args.data
}, info)
}
}
我得到的错误是
TypeError: Cannot read property 'length' of undefined
at C:\Users\jarid\Desktop\Alfarouk\alfarouq\Backend\node_modules\prisma-binding\src\Prisma.ts:86:31
at process._tickCallback (internal/process/next_tick.js:68:7)
当我删除与pyramida.exists相关的代码时,解析器成功运行,同时我也验证了参数“ args.id”是否成功提取
**版本
Prisma Server: [1.34.1]
prisma CLI: [1.34.1 ]
OS: [Windows 10 home edition]
docker toolbox
答案 0 :(得分:0)
您在使用客户端还是绑定?根据prisma文档,语法应如下所示:
const userExists = prisma.$exists.user({
id: 'cjli6tko8005t0a23fid7kke7',
})
请参阅:https://www.prisma.io/docs/1.34/prisma-client/features/check-existence-JAVASCRIPT-pyl1/
答案 1 :(得分:0)
我有同样的问题。该文档不正确。 存在函数的调用方式错误。
尝试一下。它应该工作...
const userExists = prisma.user({
id: 'cjli6tko8005t0a23fid7kke7',
}).$exists