Can I know the JQL for pulling out one project on the sprint basis
Hi @anupa Welcome to Atlassian Community!
Here is the JQL query for a project based on sprint
project = ABC and sprint = "NAME"
Note: if you search for the sprint name, it will resolve to its Sprint ID or you can search directly by the sprint ID.
Additional queries below:
Query to find the issues in a completed sprint:
project = ABC and sprint in openSprints()
Query to find the issues in the closed sprint:
project = ABC and sprint in closedSprints()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.