Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




GetFilteredIssues by RevisedBefore/After

web-app

Hello, I'm new at the Gemini API and want to filter some Issues by the Revised Date. And my problem is that I didn't get results

is there a format that must I use? or something like that?

maybe someone can post an example how to use filter with dates

beginner
· 1
beginner
Replies (1)
helpful
0
not helpful

Here is a sample:

ServiceManager sm = new ServiceManager("http://localhost/gemini/", "manager", "manager", "", false);
IssuesFilterEN filter = IssuesFilterEN.CreateProjectFilter(1, 17);
filter.RevisedAfter = "16 March 2010";
filter.RevisedBefore = "16 March 2010";
IssueEN[] issues = sm.IssuesService.GetFilteredIssues(filter);


Mark Wing
· 9108
Mark Wing