Jira Python module worklog maxResults

sergej_gordejchuk January 13, 2016

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.

1 answer

0 votes
sergej_gordejchuk January 14, 2016

Issue solved by using separate worklogs method

Naveen B L September 8, 2017

Could you please explain in detail about the seperate method used by you..?

I am trying the same in jira-python

Andrei Plamadă January 10, 2019

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:
...

Suggest an answer

Log in or Sign up to answer