Hi,
Great work on the package :+1:
Can you please let me know how should I convert my MongoDB collections in order to have them saved in a csv? My code is the following:
var ordersToExport = Orders.find({_id :{$in: orderIds}});
//var csvFormat = something to do with the ordersToExport
var blob = new Blob([ordersToExport], {type: "text/plain;charset=utf-8;",});
saveAs(blob, "orders.csv");
Thank you, I appreciate it!
Never mind :) I found it