Mongodb – findOneAndUpdate doesn't work in Mongo db
I'm using next.js 14.2 and want to change the "comment" field in my mongo database. here is my server action: export async function addAComment(proposalId: number, newComment: string) { await connectDB(); const updateFields: any = {}; updateFields.comment = newComment; console.log("here is…