这个应该是怎么个写法?
我是这样写的 有没有老哥有更好的方法?
let where = {
forumId: event.id
}
if
(event.recipient) {
where = Object.assign({}, where, {
recipient: event.recipient
})
return
await db.collection(dbName).where(where).skip....