Hi @mikeroyal, thank you very much for your answer, I know how to configure my board and columns, but my problem is in the Java code, in the plugin I am trying to develop I need information about the issues and about the board(I need to know what columns does the selected project has) and I don’t know how to gather this information from the database.
JqlQueryBuilder queryBuilder = JqlQueryBuilder.newBuilder();
Query query = queryBuilder.where().createdBetween(startDate, endDate).and().project(projectId).buildQuery();
return searchProvider.searchCount(user,query);
This is the way I am gathering the number of issues created between two dates, but this class does help me only with the issues, not with the columns. I would really like to find a way to create a query that will give me data about the columns(of a given project). Another question would be how can I use the SearchProvider class to obtain a list of issues, there is a method named “search”, but one of the parameters is a PagerFilter and I don’t understand what should it be, something like a collector?
Thank you 