It’s common practice in your organization to archive projects in the following way:
– The name of archived projects will get the prefix ARCH_
– Archived projects will be assigned the project category ARCHIVE Recently many projects were archived.
Which JQL query will tell you if there are any unresolved issues in those projects?
A . category = ARCHIVE and resolution EQUALS EMPTY
B . category = ARCHIVE AND resolution = NULL
C . project in ARCHIVE() AND resolution = Unresolved
D . project CHANGED TO “ARCH_*” AND resolution IS EMPTY
E . project ~ “ARCH_*” AND resolution = Unresolved
F . кеy ~ “ARCH_*” AND resolution IS EMPTY
Answer: A
Explanation:
resolution is EMPTY AND due <= now()
Reference: https://atlasauthority.com/blog/search-jira-with-jql/
Leave a Reply