after install "AM utils" successfully, i found i cannot use JQL issuesSubtasks,issuesParents.
i want to list all subbtasks of critical parents, my JQL is "issuesSubtasks(priority=Critical)",
and i got an error------- "Error in the JQL Query: Expecting operator but got '('. The valid operators are '=', '!=', '<', '>', '<=', '>=', '~', '!~', 'IN', 'NOT IN', 'IS' and 'IS NOT'. (line 1, character 15)"
AM utils Version is 1.3.6,and we are using jira7
please help me , thanks a lot!!!
I think I figured it out. You have to use the syntax
issues in issuesParents("Priority=Critical")
You can combine that with the rest of the JQL, but you must use the "issues in" format for this. Also, I had to use issuesParents() when I thought what I wanted was issuesSubtasks(), so try both to get what you want!
Hello, should be:
issuesSubtasks("priority=Critical"). Quotes inside function
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you the author of this add-on? I can't get this work either. Add-on is installed, but adding issuesSubtasks("priority=Critical") to a JQL query gives the error shown. It's like JQL isn't recognizing the new function and can't handle the parentheses.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Works as Andrey said - JQL should be inside the quotes "",
As you found out in your recent answer.
And I suggest author to provide some more examples to wiki - did same mistake.
Great plugin!)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For example, this would list all subtasks of PWB-3909 and PWB-2910:
issue in issuesSubtasks("Issue in(PWB-3909, PWB-2910)")
Works well here ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
not yet, sill waiting for the anwser
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.