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 の 3 つの値があり、追加、削除、更新の数を取得できます。:) 同じために次のクエリを使用しています。

[{
  "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 に答える