Hi there,
I need a GraphQL for taking the activity log of the sub-items.
I only found some examples for taking the activity logs of the (parent) items, but not for the subitems.
In this example, I can specify the ids of the items (via ‘items_ids’), but it returns nothing if I enter the id of a subitem. Also it does not support something like ‘subitem_ids’.
query {
boards(ids: 1161879462) {
activity_logs (item_ids: 1161879467){
created_at
data
}
}
}
Is this supported by the GraphQL/api? If yes, how can this be done?
Thanks.
D. Mon