Scott McKay
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': {...
@GowthamiPriyanka I believe this issue may be related to > [#19423](https://github.com/cypress-io/cypress/issues/19423) - Cypress not picking up most recent spec file changes I was running into very similar errors, where the...
I've created an entire repository with instructions on how to reproduce this error: https://github.com/Evilscaught/electron-forge-sqlite3 I've been trying to find a way to upgrade my electron application either through electron-rebuild or...
> The night is darkest just before dawn I've figured out how to include SQLite3 in the production build. Please refer to this [commit](https://github.com/Evilscaught/electron-forge-sqlite3/commit/0bdd3a327f27b7dcdf200f5a88736276a0a870b3) in the repository I've linked above....