Here's my use case
- I have software services in an object (called 'Service') with an attribute for 'Owner' which represents the team which owns the service. This attribute is populated with a team from a 'Team' object
- The team object includes an attribute for the team's Jira Project ('Project')
- I have a custom assets field which lists services (and works fine)
- I would like the list of services to only show relevant services for each team when the using the field in the team project
I have tried using the filter scope aql to no avail.
"Owner.Project" LIKE ${project.label}
or
"Owner.Project" = ${project.label}
I'm guessing the dot notation is the issue here. I can use Owner.Project fine when using JQL and something like:
service in aqlFunction("Owner.Project = xxx")
Can I use the attribute of a linked object in this way to filter issue scope?