Project

General

Profile

Feature #33151

Updated by Go MAEDA about 4 years ago

When the children to an issue is requested with `/issue/1.json?include=children` they are returned in the format: 

 <pre> ``` 
 { 
   children: Array<{ 
     id: number 
     tracker: { 
       id: number 
       name: string 
     } 
     subject: string 
   }>, 
   ... 
 } 
 </pre> ``` 

 It would be very nice if also the status where returned, like so: 

 <pre> ``` 
 { 
   children: Array<{ 
     id: number 
     tracker: { 
       id: number 
       name: string 
     } 
     status: { 
       id: number 
       name: string 
     } 
     subject: string 
   }>, 
   ... 
 } 
 </pre> ``` 

 When displaying an overview of a parent issue it's often very helpful to be able to show the status of all child issues. 

 This can be worked around by sending an extra request like `/issues.json?issue_id=2,3,4` for all child issues, but it feels wasteful and unnecessarily cumbersome for what I assume would be a quite common use case.

Back