I’ve been trying to query the API to get a list of Activity Logs for a particular board. No matter which board I query I always get an empty string returned in “activity_logs”
Query:
{boards (ids: XXXX) {name activity_logs (limit:10) {id event data}}}
Return:
{
"data": {
"boards": [
{
"name": "XXX",
"activity_logs": []
}
]
},
"account_id": XXXX
}
Am I missing something?

