Perhaps incorrectly asked a question, but still.
I create a collection like this:
export const BookCollection = new MongoObservable.Collection<Book>('books'); But, as I understand it, the BookCollection.insert method BookCollection.insert not have a second argument.
How can I get _id ?
I tried BookCollection.insert(...).then(...) , but there’s nothing like id in general and no close.