Hi all,
I'm weak on automation. I took my test yesterday (idn't pass for 1 correct answer) and today I see the Atlasian content on this matter is already getting updated.
The amount of rules and ways to build sintax is excessively large and I'm sure there might be ways to simplify this...maybe.
I need thricks to understand sintax and automation templates to not get confused why a rule won't work or if a sintax is correct or not.
Thanks!
CC
Hi @Carolina Castro ,
Sorry to hear you didn't pass. Don't give up! This other post may be helpful:
https://community.atlassian.com/forums/Training-Certification/ACP-620-exam/td-p/3046187
If you'd like to learn more about automation, I also recommend to read the documentation, look for specific trainings and trying hands-on exercises:
https://community.atlassian.com/learning/lesson/what-is-automation
https://www.atlassian.com/software/jira/guides/automation/tutorials#manage-automation-rules
Good luck!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Carlos,
Thanks for your answer.
Is there a way you can associate sintaxis to easily understand when to use In and =, or a way to order queriy items that is considered correct?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Carolina,
'=' is only for one value, while 'in' means 'any of these values' .
Regarding the order of operations this article describes that very well: https://support.atlassian.com/jira/kb/jira-cloud-jql-order-of-operations/
From the article:
Please see the full list of operators and statements listed from strongest binding to the weakest:
Parentheses ()
Comparison (=, !=, >=, IS, IS NOT, IN, NOT IN, ~, !~, ...)
Negation (NOT)
AND
OR
For example, the AND statement has a stronger binding than the OR statement, meaning the query will have a more refined search than the OR statement. In this scenario, the OR statement can return more work items, causing incorrect results when JQL is used.
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.