Prisma 中缺少 MongoDB 的逻辑或
Logical OR Missing from Prisma with MongoDB
我正在尝试使用 MongoDB 作为 Prisma 的数据库,但经过几次查询后,我注意到缺少逻辑 OR 和 NOT。
当我将数据库切换到 Postgres 时,一切就绪(AND、OR、NOT 不存在)。
我是不是漏掉了什么?
Prisma 版本为 1.34.0
有
这是 Prisma 中的一个已知问题。
https://github.com/prisma/prisma/issues/3897
No, these were disabled in the Mongo connector in order to enable filters on relations. We might bring them back in the future, but for now we valued a quicker implementation of relational filters higher than OR, NOT.
我正在尝试使用 MongoDB 作为 Prisma 的数据库,但经过几次查询后,我注意到缺少逻辑 OR 和 NOT。
当我将数据库切换到 Postgres 时,一切就绪(AND、OR、NOT 不存在)。
我是不是漏掉了什么?
Prisma 版本为 1.34.0
有
这是 Prisma 中的一个已知问题。
https://github.com/prisma/prisma/issues/3897
No, these were disabled in the Mongo connector in order to enable filters on relations. We might bring them back in the future, but for now we valued a quicker implementation of relational filters higher than OR, NOT.