Hi All,
The below line of code will list out all the issue assigned to a user.
Note: Using JIRA library & Python.
for Issue in jira.search_issues('project=XXX and assignee='+ Assignee +
' and status not in ("Discarded") ORDER BY issuekey, issuetype, status'):
I have added the below condition, but thats not worked.
and updated < startOfWeek(-1W)
Could you please help me to retrieve all the issues updated with in 7 days of a user.
Thanks in Advance,
Maadi.
Hello,
You would need to pass a JQL like this
updated > -7d
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
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.