我正在编写以下查询以导出集合,
mongoexport --host Clu11-shard-11/cluster0-shard-00-00-xmnfz.mongodb.net:27017 --ssl --username sel --password lxb --authenticationDatabase admin --db selo --collection orders --type=csv --out /Users/mt/Desktop/orders.csv --fields 'status' --query '{"status" :{"$ne":"registered"}}'
对于orders
,我有category
作为参考架构,如下所示
[
{
"status":"placed",
"category":{
"mobile":9654356450,
}
},
{
"status":"placed",
"category":{
"mobile":9428462849
}
}
]
那么我怎么也可以在csv中包括填充的集合?