I'm a new user to Jira and JQL and I'm trying to setup my project Scrum board to show swimlanes based on Epic names.
I tried the this query for one of the epic names but it doesn't appear to work
project = DEV AND "Epic Name" = EnvImprov ORDER BY priority DESC, updated DESC
I tried the query with and without quotes around EnvImprov.
Is this query wrong or is this not possible?
Hi Tom and welcome to the Community. Why do you want to use queries vs. simply using swimlanes by Epic?
regarding the query, can you try to paste it into the search for issues screen and observe the results?
I want to use a combination of queries for finding issue types and epic names and display them on the same board.
When I try to use the query:
project = DEV AND "Epic Name" = Cleanup ORDER BY priority DESC, updated DESC
in a find, only one record is found. Do I have to specify to return all records found?
Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok so the issue here is that the JQL is doing exactly what you are asking but not what you are wanting. :-)
Try this...
project = DEV AND "Epic Link" = theEpicLinkforCleanup ORDER BY priority DESC, updated DESC
replacing theEpicLinkforCleanup
you are asking for Epic Name which is for the Epic itself. You want to find all issues that have the associate "Epic Link"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, that was the issue. Just getting used to the terminology and structure of Jira.
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.