Dmitri Shuralyov

Results 869 comments of Dmitri Shuralyov

What GraphQL server are you using? Can we reproduce this error somehow? It looks like the GraphQL server is returning an error "variables can only be defined on input types"....

I think you're not doing anything wrong, the problem here is that the `Map` scalar is probably not directly supported by this package. Is `Map` scalar a part of the...

It is possible to do this by using a custom HTTP client (that sets custom request headers before delegating to the underlying HTTP client). See https://github.com/shurcooL/githubv4#authentication for more information. Please...

The code in `golang.org/x/oauth2` is more complex because it seeks to provide a general solution (rather than a very specific one) with a high degree of flexibility. E.g., it supports...

@gurpreetz Thanks for pointing out that GitHub is deprecating authentication via query parameters, and recommending authentication via request headers. However, I don't think that changes best practices for using this...

> I was already using those methods to authenticate when Github flagged it as soon to be deprecated - hence the request. Can you please elaborate? Can I reproduce this...

@gurpreetz Thanks. That should not be happening, I'll need to investigate. Can you please file a new issue at https://github.com/shurcooL/githubv4/issues and specify what version of `golang.org/x/oauth2` you're using?

A related problem happened in shurcooL/githubv4#55. The problem was that the query was `Repo []struct {...}` but should've been `Repo struct {...}`. The error was "struct field for "name" doesn't...

Thanks for the PR. I'm going to need some time to review this and think about it. One challenge with making progress on this is that it locks in HTTP-specific...

I reacted with 👍 but want to add more details. I think this could be absolutely great and helpful. Right now, I know of GopherCI mostly from the status messages...