Hi!
In my organization we have different teams with different needs but some members are relevant for different teams, meaning some members will appear in more than one project and more than one dashboard. Sometimes an issue in one project is cloned to another project since it affects both projects.
Two separate dashboards are used during two separate bi-weekly meetings, and I'd like to remove any cloned issues from those dashboards with a filter. Here's one simplified query for a filter used in a dashboard to display what's due in the upcoming week:
due >= 0d AND due <= 1w AND assignee in (membersOf(Org_Team_Location)) AND status not in ("In Review", Approved, Published) ORDER BY assignee DESC
I've tried adding 'AND issueLinkType != "is cloned by"' which naturally tells the filter to show me every issue which is linked, just not with "is cloned by".
What can I add to my query to remove only clones, but keep all other issues which fall within the rest of my query?
Any help is appreciated, thanks.