我正在使用python访问Jira的简单应用程序。 我想要解决所有问题如何获得唯一新创建的问题?
from jira import JIRA
jira = JIRA(basic_auth=('username', 'password'), options={'server':'https://MY_JIRA.atlassian.net'})
got = 50
total = 0
while got==50:
issues = jira.search_issues('project=JA', startAt = total)
....
got = len(issues)
total += got
答案 0 :(得分:2)
获取新创建的问题将涉及您创建新的JQL查询 - 这里是来自Atlassian博客的 get started with JQL page。
从底部的示例看,您可以按相对日期查询:
assignee is EMPTY and created < -1d
我希望有所帮助。