Atlassian Certified Professional – Jira Service Management Administrator (ACP-600) — Question 44
Your coworkers, Jill and Dave, want you to create a filter and a corresponding filter subscription to run every morning at 8 AM.
For the query result, they each want to receive a list of only their own issues that were assigned to them in the last 8 hours.
Which JQL query will you use in the filter?
Answer options
- A. assignee in (Jill,Dave) AND created >= -8h
- B. assignee changed TO currentUser() AFTER startOfDay()
- C. assignee changed TO currentUser() >= -8h
- D. assignee changed TO (Jill,Dave) >= -8h
- E. assignee = Jill OR assignee = Dave AND created AFTER startOfDay()
Correct answer: B
Explanation
The correct answer is B because it accurately captures issues that have been assigned to the current user (either Jill or Dave) after the start of the day, ensuring they only see their own issues. Options A, C, D, and E do not correctly filter for issues assigned to the current user or do not meet the specified time criteria.