Scott McKay

Results 3 comments of Scott McKay

Sorry, I'm not necessarily here to answer your issue, but I did notice a potential bug when skimming through your code, ```JavaScript export const config = { api: { bodyParser:...

This may be relevant for those wondering where the `$oid` came from https://www.prisma.io/docs/concepts/components/prisma-schema/relations#mongodb (subject matter pasted below if the link ever stops working) MongoDB For MongoDB, Prisma currently uses a...

@heteibako For querying with multiple ids, I've had to wrap my ids in an [ObjectId](https://www.npmjs.com/package/mongodb). ```JavaScript import { ObjectId } from 'mongodb'; const match = { $match: { 'your-key-here': {...