Hi everyone,
I'm using JIRA module for python for using API, everything works well but after receiving info about issue I have maxResult = 20 for worklog field.
How can I fix it? There're expand parameter for issue method but documentation didn't say how to use it.
Issue solved by using separate worklogs method
Could you please explain in detail about the seperate method used by you..?
I am trying the same in jira-python
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as mentioned just use worklogs method .
jql_str = "assignee = currentUser()"
issues = jira.search_issues(jql_str, maxResults=False)
for issue in issues:
worklogs=jira.worklogs(issue.id)
for worklog in worklogs:
...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!
Register today
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.