ZJONSSON / node-etl

npm install etl
233 stars 49 forks source link

Mongo insert is deprecated #106

Open chantorak opened 4 years ago

chantorak commented 4 years ago

Using mongo:

etl.file('test.csv')
  .pipe(etl.csv())
  .pipe(etl.collect(10))
  .pipe(etl.mongo.insert(collection));

Will result in:

(node:62919) DeprecationWarning: collection.insert is deprecated. Use insertOne, insertMany or bulkWrite instead.
ZJONSSON commented 4 years ago

Yes - so this still works but has to be updated. Do you mind taking a stab at a PR?

chantorak commented 4 years ago

107