I'm using mongodb with node js. After updating table collection
db.collection('tables').update(something)
And I try to get all collection
db.collection('tables').find()
But I get old collection with not updated tables. So how I can update and get all updated collection?