All projects use a simplified workflow which has three statuses (Open, In Progress, Closed) and all global transitions.
You need to find issues which were never In Progress.
Select the correct JQL query.
All projects use a simplified workflow which has three statuses (Open, In Progress, Closed) and all global transitions.
You need to find issues which were never In Progress.
Select the correct JQL query.
To find issues that were never In Progress, the JQL query should ensure that the status was never changed to 'In Progress' at any point in time. The best option for this is 'Status WAS NOT "In Progress"' as it explicitly filters out any issues that have ever been in the 'In Progress' status.
The answer is D