I’ve been trying to get the activity logs for a specifc board, but it always returns empty, but I have access to this board and I can see that there are logs on at least 1 pulse. The result is the same on Postman and on the API Playground. The same query on other board returns results as intended, so it seems like a problem only with this board:
Activity logs on April 01:
Query on this board with filter:
query kpn {
boards (limit: 1,ids: XXXX) {
activity_logs (limit: 9999,from: "2022-04-01T00:00:00-03:00", to: "2022-04-18T23:59:59-03:00", column_ids: "time_tracking") {
id
event
data
}
}
}
Result:
{"data":{"boards":[{"activity_logs":[]}]},"account_id":ZZZZZ}
Same query, different board working fine:
query kpn{
boards (limit: 1, ids: YYYY) {
activity_logs (limit: 9999,from: "2022-04-01T00:00:00-03:00", to: "2022-04-02T23:59:59-03:00", column_ids: "time_tracking") {
id
event
data
}
}
}
Result print:
Can you help me identify what could be wrong with this specific board?