Looking for a query to pull all JIRAs for an assignee where the JIRA was created and closed in the same day
@[deleted] you can use JQL , something like below:
assignee = "your assignee user" AND created = "specific date" AND resolved = "specific date" order by created DESC
For more information on fields, keywords, operators, functions available and their usage in JQL, please refer the below document from Atlassian: https://confluence.atlassian.com/jirasoftwareserver0713/advanced-searching-965542847.html
@[deleted] Did my answer helped resolving your query?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Taranjeet for the feedback. It helps if we set the date for created and resolved. However, is there a way the query can pull all jira tickets where the create date = resolve date without specifying a particular date in the query.
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.