我正在尝试获取某些用户添加,编辑和删除的主题数量。
我可以使用以下查询获取多个主题:
[{
"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 :(得分:0)
operation属性有三个值insert,delete和update,通过它们可以获得添加,删除和更新的数量。 :) 我正在使用以下查询。
[{
"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
}]