You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting StackOverflowException when I try to apply IssueFilters. Here is the code:
ProductHeaderValue header = new ProductHeaderValue("Chronos");
var conn = new Connection(header, "123");
var filter = new IssueFilters() { Since = DateTimeOffset.UtcNow.AddDays(-1) };
var query = new Query()
.RepositoryOwner(Variable.Var("owner"))
.Repository(Variable.Var("repo"))
.Issues(first: 10, filterBy: filter)
.Nodes
.Select(repo => new
{
repo.Title
})
.Compile();
var vars = new Dictionary<string, object>
{
{ "owner", "elders" },
{ "repo", "cronus" },
};
var result = conn.Run(query, vars).GetAwaiter().GetResult();
The text was updated successfully, but these errors were encountered:
👋 Hey Friends, this issue has been automatically marked as stale because it has no recent activity. It will be closed if no further activity occurs. Please add the Status: Pinned label if you feel that this issue needs to remain open/active. Thank you for your contributions and help in keeping things tidy!
I am getting StackOverflowException when I try to apply IssueFilters. Here is the code:
The text was updated successfully, but these errors were encountered: