I'm trying to use the c# nuget package to query data from Jira.
I'm using the following code to pull back my list of current issues:
{code}
var jira = Jira.CreateRestClient("http://url2jira/", "username", "password");
var issues = await jira.Issues.GetIssuesFromJqlAsync("assignee = currentUser() AND resolution = Unresolved order by updated DESC", 10, 0);
issues.Dump();
{code}
It is return issues, but it's like it's not filtering at all. I'm getting resolved issues from other users. It's also returning 50 items rather than the requested 10.