I created a connection between Make and Jira and I need help to correctly parameterize a JQL Query. The objective is to search for issues that meet a certain requirement.
I wrote the following JQL, tested it directly in Jira and it is working correctly. project = Automation AND duedate < now() AND resolution = EMPTY
I replicated it in Make, but I couldn’t get it to work correctly.
This part works: get(project = "Automation" & duedate < formatDate(now; "YYYY-MM-DD"))
But when I add another validation, the return does not take into account the two statements: get(project = "Automation" & duedate < formatDate(now; "YYYY-MM-DD") & resolution = empty)
not entirely sure, but have you tried using {{emptystring}} instead of empty in your JQL? or EMPTY ? I am not able to check myself with JIRA Module as I do not have any.
In that case I am not sure what the issue is then. Have you tried using Make Dev Tool to debug deeper? https://www.make.com/en/help/scenarios/make-devtool
Or maybe someone else who had the issue will jump in at some point.
If you re-arrange the conditions in a different order, I am guessing that does not change anything?
Best of luck