我想算一下MongoDB中有多少转推。我通过流媒体API获得了Twitter数据。
这是我的不同查询,但没有一个工作..请帮助我
db.collection.find({"retweet_count":{$ne:0}}).count()
db.collection.find({retweeted:ture}).count()
db.collection.find({retweeted:false}).count()
相关数据结构
{
"retweeted" : false,
"in_reply_to_status_id" : null,
"in_reply_to_status_id_str" : null,
"is_quote_status" : false,
"id_str" : "815351057677094912",
"created_at" : "Sun Jan 01 00:16:55 +0000 2017",
"id" : NumberLong("815351057677094912"),
"retweet_count" : 0,
"truncated" : false,
"contributors" : null
}