Dmitri Shuralyov

Results 869 comments of Dmitri Shuralyov

To answer your question, this library uses the standard Go struct field tags (as documented at https://godoc.org/reflect#StructTag), and they don’t support multiple lines. See issue golang/go#15893. That means, at this...

Yes, it is a long term goal. However, I don't plan to work on this soon. It's not needed for [githubv4](https://github.com/shurcooL/githubv4) because the GitHub GraphQL API v4 doesn't make use...

This is a good question, and it remains an open question for me. (FWIW, basic pagination is documented at https://github.com/shurcooL/githubv4#pagination, but it doesn't cover pagination across more than one resource...

Yes, enumeration types are supported. You can either define types and consts that correspond to the private API schema, for example: ```Go type Episode string const ( EpisodeNewHope Episode =...

For reference, this also came up in the past at https://github.com/shurcooL/githubql/issues/2. However, the original author ended up no longer needing the feature, so I deferred thinking about it until a...

Just wondering, what GraphQL server are you using, and does it support non-HTTP transports?

Thanks a lot for experimenting with this and writing up those notes @eric-am, that is very helpful and valuable. I want to take some time to think the proposed API,...

> Part 2: YES, using this for testing is really neat. I don't know how I lived before this. It's so convenient, and so useful! Would you mind elaborating on...

Thanks for the report. How can I reproduce this?

There's not enough information there for me to reproduce this. Can you please post a minimal working Go program that triggers that error? Or at least include the query (or...