-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get issues list filtered by custom field #331
Comments
have you tried the corresponding request via |
Hi Alexey. http://redminefqdn/issues.xml?project_id=29&status_id=*&cf_17=2019-12-11 I think that the problem is in the "params" variable... could you help me to make right filter params variable? Thank you in advance! |
yeeeahh.. sorry for double post, but with this code, i've get the list of issues based on filter applied on custom field 17. :) Only problem is that my custom field is a string, but contain a date, and i cannot apply the ">" "<" operator. Could you confirm that this isn't possible? Params params = new Params() Thank you so much! |
you can explore Redmine search params by constructing any query with ">=" and similar operands, e.g. then apply the same parameters when calling Redmine using the library. the library simply forwards your params to the server, so whatever your server accepts in the URL should work in the library. with a possible exception when REST calls do not support some operations, which may happen. |
Hi, i need to get a list of all issue opened filtered by a custom field (id 17) that contain a date (ex. 2019-09-26).
How i can create this?
I've tried with this code, but the filter doesn't work.
`IssueManager issueManager = mgr.getIssueManager();
ResultsWrapper issues = null;
The text was updated successfully, but these errors were encountered: