Hello,
I have a project (Project A) and several other projects (Project B, Project C, Project D and etc). Project A is most like a big backlog and when we decide this is an epic/story/bug and belong to B, C or D project we create another ticket in project B/C/D/etc and we link this new ticket with a specific link type to the original ticket from project A.
I would like to check those tickets from project B/C/D/etc, which have more that one specific link type to Project A.
I tried to solve in JQL:
issue in numberOfLinkedIssuesFromFilter("MyFilter", ">", 1)
where "MyFilter" is issueFunction in hasLinks("SpecificLinkType")
But numberOfLinkedIssuesFromFilter shows all the tickets which have any kind of link (included Sub-tasks, and we have a lot of sub-tasks).
Do you have any idea how to get the result?
Thanks in advance