Hi there,
i´m despreately looking for a JQL Query that displays every ticket moved from the original project to any other. Is there anyone out there with an idea or maybe a resolution for my problem?
Regards,
Patrick
I’m Charlotte, a support engineer at Appfire and I’m here to help you.
Unfortunately, natively, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to get all issues that have been moved from one project to any other:
movedProjects in (ABC)
Or
movedProjects in (ABC, DEF)
Note: The query will find all issues which were in ABC or DEF at some point. Due to Jira plugin system limitation it is impossible to build a command which supports searching from/to.
Please contact our support if you have any other questions about this query.
We’ll be happy to help you! 😉
Hello @Patrick Decker
I do not think that it is possible to accomplish this with JQL by default (maybe other community members will correct me and give you a direct solution).
What you can do is:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
you can check if resolution is set or a ticket is in specific status:
resolution is not EMPTY and status in (Done, Resolved)
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.