I feel like there has to be a way to do this, and I simply can't figure it out. I'd like to be able to filter the Rapid Board with JQL from the query string. I've tried adding the jql parameter and the board ignores it.
Hello,
I am not sure what you are trying to do. But you can filter a board with quick filters.
https://confluence.atlassian.com/jirasoftwareserver073/configuring-quick-filters-861254434.html
I'm familiar with adding a quick filter to the query string, but I'm looking to add JQL to the query string.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same wish as Zane - would like to be able to add an arbitrary JQL statement in the QSP (or through the GUI via a dynamic quick filter) to a board. I frequently find myself hardcoding a LOT of quick filters that would be a lot more efficient to do dynamically at run-time
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would this do what you want?
https://<your jira server>/issues/?jql=resolutiondate%20%3E%3D%20-2w%20and%20project%20%3D%20%22LPM%22%20%20ORDER%20BY%20%22updated%22%20DESC
that is the JQL for:
resolutiondate >= -2w and project = "LPM" ORDER BY "updated" DESC
When you go to "Issues" -> "Search for issues" you get the string up to the `jql=` with nothing after the equals sign. When you do a search from there, the query is put into the URL as in the example above.
HTH
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.