如何检索mongodb集合的所有文档的所有可能的嵌套键

时间:2015-11-16 06:52:20

标签: mongodb

我想检索给定mongodb集合中所有文档中存在的所有嵌套键的名称。

E.g:

data <- data.frame(x=c(1,3,4,6),y=c(2,5,9,6),z=c(1,1,2,2))
data
ggplot(data,aes(x,y,label=x))+geom_point()+geom_text()+facet_grid(z~.,scales="free_y")
ggplotly()

我想获得唯一键(包括所有嵌套键),如:

  

[account,account_type,properties.title,properties.gender,   properties.dob,properties.industry,properties.estd_on]

0 个答案:

没有答案