How to use mongodb with chainable method in meteor?

how to use mongodb with chainable method in meteor?

Collection.Staff.find().sort({_id: -1})

Collection.find({}, { sort: { _id: -1 } })

http://docs.meteor.com/#/full/find

so, i can’t use chainable???

Meteor doesn’t currently support chained query syntax.