...
project = "Consulting - Michelin France" AND status = "Ready for Review (QA)" AND type != Sub-task
Tutorial Links
https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-14
https://www.tutorialspoint.com/jira/jira_advanced_search.htmJQL: the most flexible way to search Jira
The Jira JQL Advanced Guide: How to Search Jira Issues Like a Pro
List of Keywords
AND − ex - status = open AND priority = urgent And assignee = Ashish.
OR − ex – duedate < now() or duedate is empty.
NOT − ex – not assignee = Ashish .
EMPTY − ex - affectedVersion is empty / affectedVersion = empty.
NULL − ex – assignee is null.
ORDER BY − ex – duedate = empty order by created, priority desc.
...