You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I'm looking to get a search display of a specific set of issues (key) how to I write the advanced querry search for this?
Hi, this is works for me.
When you have project name Super project and his key is SP, then you can search more issues this way:
project = SP and key in ("SP-406","SP-395","SP-474","SP-473","SP-472","SP-455","SP-458","SP-453","SP-463","SP-389","SP-439","SP-422","SP-447","SP-456","SP-384","SP-375","SP-428","SP-422") ORDER BY key ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Martha Leo Welcome to the Atlassian Community!
You can use the JQL (Jira query language) to get search for a specific set of issues (such as stories or Epics or sub-tasks).
To write a JQL, you need to navigate to Filters(top menu) -> Advanced issue search and in the bar you need to write a query.
Example queries:
1) Show me all the issues in my project
Project = ABC
2) I want to filter only Epics and Stories
project = ABC AND issuetype in (Epic,Story)
3) I want to see issues that are Done, Closed
project = ABC AND status in (Done, Closed)
There are lot of other things you can do with the filter too. You can follow the documentation here and learn more about JQL.
https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-14
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.