2012-12-12 49 views
0

我想要獲取某些用戶添加,編輯和刪除的主題數量。如何獲取用戶在Freebase中進行編輯的次數?

我能夠得到使用下面的查詢主題數:

[{ 
    "creator":  "/user/getsaurabhsaxena", 
    "name":  null, 
    "id":   null, 
    "mid":   null, 
    "type": [{ 
    "name": null, 
    "id": null 
    }], 
    "timestamp>=": "2012-11-11T00:00:00.0000Z", 
    "timestamp<=": "2012-12-12T23:23:59.0000Z", 
    "timestamp": null, 
    "sort":  "-timestamp" 
}]​ 

我無法弄清楚得到編輯和刪除的號碼一樣。任何人都可以幫忙嗎?

回答

0

操作屬性有三個值插入,刪除和更新,通過它你可以得到添加,刪除和更新的數量。 :) 我正在使用以下查詢相同。

[{ 
    "operation":  null, 
    "source": { 
    }, 
    "from:timestamp>=": "2012-11-12T00:00:00.000Z", 
    "to:timestamp<": "2012-12-12T23:23:59.000Z", 
    "attribution": "/user/<username>", 
    "timestamp":  null, 
    "sort":   "-timestamp", 
    "type":   "/type/link", 
    "limit":   1000 
}]​ 
相關問題