发布时间:2024-01-04 17:30
mongo中清除某个字段:
db.getCollection('nft').update({
"isCrossChain": {
"$exists": true
}
}, {
"$unset": {
"isCrossChain":null
}
}, {
multi: true
});
查询不存在某一个字段的所有对象
"currentOwnerId": {$exists : false}