const result = await db.collection("collection").findOne({colID: 1});
const res = await db.collection('collectiontwo').insertOne({title: result.title});
client.close();
Account.findOne({username: req.user}).select('token').exec()
.then((token) => {
// ...
});