I'm trying to search all the issues that have their parent or epic or link issue IQ-6885 but the below query results in issues with all the statuses.
JQL:
parent=IQ-6885 OR "Epic Link"=IQ-6885 OR "Parent Link"=IQ-6885 AND status IN ("Close (Ready to Go Live)", "Close ( Ready to Go Live)", "Closed", "Closed.") ORDER BY createdDate
Hi @Idrees
Try placing the first three ORs in parenthesis:
(parent=IQ-6885 OR "Epic Link"=IQ-6885 OR "Parent Link"=IQ-6885) AND status IN ("Close (Ready to Go Live)", "Close ( Ready to Go Live)", "Closed", "Closed.") ORDER BY createdDate
Let me know if you got the results you wanted.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Idrees nice to know that! Kindly mark my answer as accepted, in order to help others in the community with similar questions. Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.