I can get my parent via the issueLinks:
issueLinks.FILTER($.type.outward = "is parent of" AND $.destination = this).source.key
If I try to get to my parent's parent via parent.issueLinks (ran in debug and issueLinks is empty)
issueLinks.FILTER($.type.outward = "is parent of" AND $.destination = this).source.issueLinks
***Looks like this is not available to look upwards
Any thought on how solve this issue?
Hello @Al_Kopasz
This is not possible - the issueLInks function can extract data only from a directly linked issue. To get values from a grandparent issue, you need to:
- either have all three levels in the structure in the form of the hierarchy. Then you can use the parent aggregate function and show a value from a grandparent at its grandchild with: parent#level=-2{field_value}
- or have the parent issue and the grandchild issue underneath it. Then you can extract the grandparent's value through the parent issue using the issueLinks function, and show it for the grandchild using the parent function.
I hope this helps. If you need further assistance with the formula or if you have other questions about Structure, please reach out to us directly at our support portal.
Best regards,
Stepan
Tempo (the Structure app vendor)
Thanks for the quick response... this has been warping my brain for a bit. Was looking for a way to treat it as an object of type item and reference it's properties.
So no banana, is good enough...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.