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
Hi community
I'm trying to get a filter working since quite some time now. I have certain tasks that have the term "Inherit+" in the Summary (usually at the beginning). I tried to set the JQL filter to the following:
issuetype = Task AND summary ~ "Inherit\"\\+\"" ORDER BY key ASC, created DESC
This works almost, since I also got the tasks starting only with "Inherit", and no +-sign in the summary. I thought I had the masking of the +-sign correct, but obviously not, can anyone help me with this?
regarding your original question, you are correct that this is related to how Jira indexing works. IIRC, Atlassian is working on better full-text search support for Jira Cloud, but I haven't heard anything about Data Center or Server.
I understand that this problem may not justify a Marketplace app by itself, but just to put it out there: My team and I work on an app named JXL for Jira, in which your use case would be easy to do. JXL is a full-fledged spreadsheet/table view for your issues that allows viewing, inline-editing, sorting, and filtering by all your issue fields, much like you'd do in e.g. Excel or Google Sheets. Since JXL uses a different technology for searching through issues, you can use any special character, like so:
Needless to say that JXL can do much more than that :) As it looks like you're on Jira Server: While Atlassian doesn't allow new apps to be listed for Jira Server, JXL is perfectly compatible; it's just that we need to generate a license for you. If the above looks interesting, just let me know and I'll create a free trial for you.
Regarding your second question, if I understand correctly, you can do
filter = "Name of your filter"
or
filter = <filterID>
- or am I missing something?
Best,
Hannes
Hi @Hannes Obweger - JXL for Jira
Thanks much for your answer. I will certainly have a thought about your solution, though since I'm working in a larger company, this is not that easy to add some more applications.
With your solution about the filter, this works perfect, if I just take the filter as a search query, but I meant to have the filter as a criteria for the tasks I'm looking for. Maybe I misunderstood how to use it (and I'll certainly play around a bit with this knowledge).
Thanks and regards
Martin
Ah, I think I understand - you would want to use the result of one query as an input for another query, like you'd do a join or sub-query in SQL? To the best of my knowledge, you can't do that in "plain" JQL - but you could have a look into Marketplace apps that extend JQL, like Scriptrunner or JQL Search Extensions.