Hi Team,
Can you please explain me below listed JQL.
project = ABCD AND issuetype in (Bug) AND NOT (status = Closed AND resolutiondate <= -5d) ORDER BY Priority DESC
Thanks,
Raju
It finds Bugs in the project ABCD.
Then the second clause finds old closed issues
Then the NOT says show everything but that.
Drawing venn diagrams often helps me
It looks like its doing the following
Here's a deeper breakdown:
project = ABCD means its only looking at issues in the ABCD project
AND issuetype in (Bug) means its only looking for the bug issue type
AND NOT (status = Closed AND resolutiondate <= -5d) means its ignoring issues in the closed status and issues that have been resolved at least 5 days ago
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.