-
Notifications
You must be signed in to change notification settings - Fork 50
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
NullReferenceException when API quota is exceeded #239
Comments
Any idea which element is coming up null? You could try adding some guards like this: Items = connection.Edges.Select(e => new
{
Name = e.Node != null ? e.Node.Name : null,
e.Permission
}).ToList(), I don't think we can use |
No, I've got zero idea and it very much nether repros locally :( But by looking at the stack trace I'm inclined to say that bug isn't the schema but somewhere in your deserializer... |
Update: The issue seems to be independent of the query and occurs when the API rate limit is exceeded. |
👋 Hey Friends, this issue has been automatically marked as |
Update: The issue seems to be independent of the query and occurs when the API rate limit is exceeded.
When executing this query:
I sometimes get the following exceptions:
Any ideas?
The text was updated successfully, but these errors were encountered: