ACP 620 Jira Cloud · Free Practice Question Medium
Question 1
Which JQLs can you use to get a list of issues that contain all 3 keywords in the issue summary? (Choose two.)
Keywords: User, developer, and tester
Sample output:

- A summary in ("user", "developer", "tester")
- B summary ~ "user, developer, tester"
- C summary ~ "user" AND summary ~ "developer" AND summary ~ "tester"
Reveal correct answers
Correct answers: B, C
Explanation
summary ~ "user, developer, tester" is correct. This query will return issues that contain all three keywords (user, developer, and tester).

summary ~ "user" AND summary ~ "developer" AND summary ~ "tester" is correct. This query will return issues that contain all three keywords (user, developer, and tester).

summary ~ ("user", "developer", "tester") is incorrect. Operator '~' does not support the list value.

summary in ("user", "developer", "tester") is incorrect. Operator 'in' does not support the 'summary' field.

The GIF below demonstrates the actual test. (Click here if it is not visible)

Reference: Advanced search reference - JQL functions
Discussion
Think the marked answer is wrong, or have a better explanation? Share it below — comments appear after review.
