Hey, all!
I’m using the api to get activity_logs. We have tons of items and I was wondering if there is any way to filter activity logs by event type (we have a lot of items and we need just query a couple of event types.
For instance, something like this:
query {
boards (ids: 456839293) {
activity_logs (from: “2023-01-01T00:00:00Z”,
to: “2023-02-01T00:00:00Z”,
EVENT: [“subscribe”, “unsubscribe”] ) {
id
data
}
}
}
Hope it makes sense.
Thank you!