{"jql": "id = 207482 or id = 207483 or ........................... ", "maxResults":1000}
Hi!
If you on Server edition you can do it like this:
jira-home/jira-config.properties
Add :
jira.search.views.max.limit = 1000
jira.search.views.default.max = 1000
Don't forget to restart JIRA
Anyway, I recommend to use paginations like this:
https://github.com/AstroMatt/atlassian-python-api/blob/master/atlassian/jira.py#L31
hope it helps
Cheers,
Gonchik Tsymzhitov
Hi Muhammad
Can you try maxResults=1000 instead of maxResults:1000
Regards
Hope this helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is JSON string. Using = instead of : causes exception.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you on cloud ? Atlassian put a limit on the maxresults see this page
If you want you add a startAt attribut :
{"jql": "project = PROJ ORDER BY key ASC","startAt":0,"maxResults":0,"fields":["
id","key","summary","status.id","issuetype
And send an another query with "startAt":51
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.