Hello All,
Anyone know how we can exclude those issues which are cloned or linked issues with clone type in jira using JQL query?
Hi,
You can try this JQL:
project = "ABC" AND (issueLinkType not in ("clones", "is cloned by") OR issueLinkType is EMPTY)
Hi @Nidhi singh
Welcome to the Atlassian Community!
For this you can try something like this
issueLinkType != clones
to get more specific to project you can add project="your project name" and issueLinkType != clones
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.