Hi,
Does anyone know if or how it is possible to use concatenations in JQL?
example: text ~ "Fixed Text".currentUser()."Fixed Text"
I have not been able to find any reference to concatenations in any documentation anywhere and have not seen any similar questions. So it seems like it is simply not possible. Would of course be great if I am wrong about this.
Thanks.
Hi :)
The usual way to build your JQL query is to use JqlClauseBuilder like this:
JqlQueryBuilder builder = JqlQueryBuilder.newBuilder(); JqlClauseBuilder jqlClauseBuilder = builder.where().project("TP").and().reporterUser("admin").or().reporterUser("test"); //now perform the actual search (only interested in number of results) searchService.searchCount(user, builder.buildQuery()); //or if you need the standard result set searchService.search(user, builder.buildQuery(), PagerFilter.getUnlimitedFilter());
More info in this article.
That way you can build most of your queries. Sometimes, when you need to add a custom query string, to create a more advanced query, you need to "concatenate" the additional string (in a WHERE clause) to your already created jql, which can be accomplished like this
JqlQueryBuilder builder = JqlQueryBuilder.newBuilder(); JqlClauseBuilder jqlClauseBuilder = builder.where().project("TP").and().reporterUser("admin").or().reporterUser("test"); String finalQueryString = builder.buildQuery().getWhereClause().toString(); finalQueryString += " AND ( project = TP )"; // this is where you concatenate your custom jql string SearchService searchService = ComponentAccessor.getComponent(SearchService.class); if (searchService != null) try { finalQueryString = finalQueryString.replace("{", "(").replace("}", ")"); // replace special chars... SearchService.ParseResult parseResult = searchService.parseQuery(user, finalQueryString); if (parseResult.isValid()) { searchService.searchCount(user, parseResult.getQuery()); ... } else { // jql is not valid } } catch (SearchException e) { // an error occurred while performing the search } }
I hope it helps.
May be this can help you
http://docs.atlassian.com/jira/latest/com/atlassian/jira/jql/builder/JqlClauseBuilder.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is solution with API. the question was about JQL in UI
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline 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.