Mongodb – mongoose bulkwrite upsert only works with creation, not updating
following answers from here and here, attempting to implement a bulk upsert operation using Mongoose 5.4 Have something like so: const update = await Company.bulkWrite([ { 'updateOne': { 'filter': { 'url': result.url }, 'update': { testVal: 'testinggg' }, 'upsert': true,…