i'm new to jira rest api, and i want to get the count of all open issues in a project,
for example, get the number of open/resolved issues in project "TES"
how am i supposed to do it? I'll apprieate you help:)
here's my code,
public static void main(String[] args) throws URISyntaxException { final JerseyJiraRestClientFactory factory = new JerseyJiraRestClientFactory(); final URI jiraServerUri = new URI(JIRA_URL); final JiraRestClient restClient = factory .createWithBasicHttpAuthentication(jiraServerUri, USER_NAME, PASSWORD); final NullProgressMonitor pm = new NullProgressMonitor(); System.out.println("Initial done"); Project myProject = restClient.getProjectClient().getProject("TES", pm); // final Issue issue = restClient.getIssueClient().getIssue("TES-2", pm); // // System.out.println(issue); }
Ning, I have a littile bit knowledge about rest api. But as of my knowledge, you can use the JQL query and the SearchRestClient interface to get the count of issue which ever you want.
For Example:
String jql="Project=TES and status in(Open,Resolved)"
int issuecount=restClient.SearchRestClient().searchJql(jql,pm).getTotal()
May this helps you,Thanks
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.