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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.