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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.