Not getting parentItemId and parentItemBoardId info in Activity Log API response for subitems :
query {
boards (ids: 123456789) {
activity_logs (from: "2022-07-05T06:05:00Z", to: "2022-07-06T00:00:00Z") {
id
event
data
}
}
}
In the API doc where sample response example is given for Webhook - https://api.developer.monday.com/docs/webhooks-1#sample-payload-for-webhook-events check sample response for create_subitem, there it’s mentioned that only difference between response for subitems is we get two additional fields/info mentioned below compared to activity logs response for items
"parentItemId": "1771812716",
"parentItemBoardId": "1771812698"
Kindly help me know how I could differentiate if the activity log is for Item or Subitem.
TIA !!