Hi,
Can you please help us with below details for GraphQL APIs around Sub Items
Is there any API to get list of Sub Items for a given Board ID ?
Is there any API to get Activity log for Sub Items ? for the changes being done to Sub Items (like its title, Status… update) . with current request (Sample shows below with dummy board id 123), we only get the Activity log which is visible on Item not the Sub Items
query {
boards (ids: 123) {
items{
id
name
}
activity_logs{
data
event
created_at
}
}
}
- Is there any API to get Sub Item Updates ? The below API example, gives updates of only items
query {
updates {
created_at
item_id
text_body
}
}
Sub Item retrieval can be done trough Item Query API itself by using Sub Item Id instead of Item Id, Please confirm
Is there any API to know who is parent Item of a given Sub Item ?
The Column list is same for Items and Sub Items for a given Board, please confirm.
Is there any API to update the Sub Item Properties/columns ?