Closes https://github.com/payloadcms/payload/issues/7952 Adds support for `in` and `not_in` operator against JSON field filters. The following queries are now valid in postgres as well, previously it only worked in mongo ```ts await payload.find({ collection: 'posts', where: { 'data.value': { in: ['12', '13', '14'], }, }, context: { disable: true, }, }) await payload.find({ collection: 'posts', where: { 'data.value': { not_in: ['12', '13', '14'], }, }, context: { disable: true, }, }) ```
Payload Drizzle Adapter
The Drizzle package is used by db-postgres and db-sqlite for shared functionality of SQL databases. It is not meant to be used directly in Payload projects.