I want to write a query like this:
"Release Version" = "1.0.0" and hasLinkType("cloned")
JQL Tricks Plugin seems to do this. But the plugins site is down at the moment: https://plugins.atlassian.com/31399
I believe this plugin is not free. Anyone else writing a similar query?
We actually have something similar, and we decided to go to the backend way - query directly off the JIRA database! of course, we need to create a read-only account, but its better than waiting on JQL updates :)
issueFunction in linkedIssuesOf("project = projectName", "cloned") and "Release Version" = "1.0.0" and
This works for me. We do have a lot of plugins that my predecessor installed, and I'm not sure if the above needs one of those or not.
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.