0

我正在尝试获取某些用户添加、编辑和删除的主题数量。

我可以使用以下查询获取主题数量:

[{
  "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"
}]​

我无法弄清楚获得编辑和删除数量的方法。有人可以帮忙吗?

4

1 回答 1

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
}]​
于 2012-12-12T12:51:43.647 回答