# Database.command: Command

数据库操作符

具体接口查看 Command 文档

# 示例代码

const _ = db.command
db.collection('todos').doc('doc-id').update({
  data: {
    tags: _.addToSet('database')
  }
})
1
2
3
4
5
6