---
title: "Conditions using JQL in JMWE"
canonical: "https://support.appfire.com/space/JMWE/461766700/Conditions%20using%20JQL%20in%20JMWE"
format: markdown
---
> Macro (aura-html)

About JQL

About JQL in JMWE - using jqlSearch() function

Simple conditions:

- <span style="color: #172b4d">Issue type is a Bug</span>
- <span style="color: #172b4d">Priority of the issue</span>
- <span style="color: #172b4d">Checking the value of a multi-valued field</span>
- <span style="color: #172b4d">Transition parent issue only when all the subtasks are in status “Done”</span>
- <span style="color: #172b4d">Reporter is a member of a specific group - reporter in membersOf("")</span>

Note: Not to use such expensive operations and instead use Groovy scripting

Complex conditions:

- <span style="color: #172b4d">The current issue is the only issue that is resolved</span>
- <span style="color: #172b4d">"issuetype = "Test case" AND "Test Failed against browsers" is EMPTY" - Groovy condition</span>
- <span style="color: #172b4d">Disallowing working on too many issues at the same time.</span>
- <span style="color: #172b4d">Preventing users from reporting too many issues per day.</span>
- <span style="color: #172b4d">Generate a report of all HIGH severity JIRA tickets for a project with key X (or name X) that were created from 9 PM EST to 12 AM EST from the start of the year?</span>