I am trying to run a query in JIRA in which I need to find for the ticket in Waiting for input if the last comment which was added has been updated in last 7 days or not ?
Use JQL: To find the issues which are in particular status and are not updated from last seven days
project = "projectname" AND status ="yourstatusname" AND updated > -7d
Here's also a link to some documentation to get you started!
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.