- Jun 16, 2023
-
-
putra authored
- Apr 20, 2023
-
-
苏连云 authored
-
Toan Nguyen authored
-
- Apr 08, 2023
-
-
Toan Nguyen authored
-
David Bain authored
Also consider "@" when looking for the end of the field name, since GraphQL directives can follow a field name immediately without any arguments or aliases being involved. For example: query { me { firstName lastName @include(if: $expandedInfo) } } The strings.Index check for "@" is the third separator we look for. There's no reason to look separately, since we just want the first field name separator. Add test covering a GraphQL directive that immediately follows the field name. Co-authored-by:
Dmitri Shuralyov <dmitri@shuralyov.com> GitHub-Pull-Request: https://github.com/shurcooL/graphql/pull/94
-
Dmitri Shuralyov authored
These help generate nicer identifiers in the githubv4 package. Also remove mention of golint since it's deprecated, and sort the initialisms map.
-
Toan Nguyen authored
-
- Mar 27, 2023
-
-
Ioannis Sermetziadis authored
-
- Mar 16, 2023
-
-
Toan Nguyen authored
* improve the subscription logic and add new settings
-
- Mar 08, 2023
-
-
Ioannis Sermetziadis authored
-
- Mar 04, 2023
-
-
Ioannis Sermetziadis authored
-
- Feb 28, 2023
-
-
Toan Nguyen authored
* merge reset subscription logic into Run * fix data race issues and make subscription states immutable
-
- Feb 13, 2023
-
-
Toan Nguyen authored
* patch gin v1.7.7 to fix the security issue
-
- Jan 23, 2023
-
-
Johanna Mantilla authored
Allow using custom HTTP clients (#68)
-
- Jan 18, 2023
-
-
Toan Nguyen authored
* support graphql-ws protocol * add WithConnectionParamsFn method * add tests and coverage
-
- Jan 16, 2023
-
-
JoshuaDietz authored
* docs: clarify usage of structs as variables
-
- Dec 16, 2022
-
-
Rafael Vanoni authored
* Fix typo in Events section of the readme file
-
- Dec 08, 2022
-
-
Nico Feulner authored
Exposed the jsonutil package with unmarshal json method
-
- Nov 13, 2022
-
-
Toan Nguyen authored
-
- Nov 08, 2022
-
-
Leigh Stillard authored
Proposing this change to make the example clearer. As a learning gopher, it took me a while to figure this out and I think this change would improve the documentation for many.
-
- Sep 29, 2022
-
-
Andrii Soluk authored
-
- Sep 08, 2022
-
-
Weston Schmidt authored
-
- Aug 09, 2022
-
-
Toan Nguyen authored
-
- Jul 20, 2022
-
-
Gregory authored
* Propagate errors instead of panic
-
- Jul 05, 2022
-
-
Toan Nguyen authored
* fix the deadlock issue that the subscription client can't receive error events from the channel. * close the connection when there is no running subscription * add a particular error that stops the subscription inside the callback
-
- Jul 01, 2022
-
-
Toan Nguyen authored
-
- Jun 10, 2022
-
-
Toan Nguyen authored
-
- May 06, 2022
-
-
Toan Nguyen authored
* update docs for v0.7.0 features * fix markdown table of content
-
- Apr 30, 2022
-
-
nizar-m authored
Co-authored-by:
Nizar Malangadan <nizar-m@users.noreply.github.com>
-
- Apr 25, 2022
-
-
David Barroso authored
* added method to execute queries already pre-built
-
- Mar 15, 2022
-
-
Toan Nguyen authored
* use hyphen tag to skip printing fields to the query string output
-
- Mar 14, 2022
-
-
Toan Nguyen authored
add debug mode, expose GraphQL builder functions and UnmarshalGraphQL for unit tests
-
- Feb 21, 2022
-
-
Ioannis Sermetziadis authored
-
- Feb 04, 2022
-
-
David Barroso authored
-
- Jan 11, 2022
-
-
Davit Tovmasyan authored
-
- Jan 04, 2022
-
-
Toan Nguyen authored
update nhooyr/websocket dependencies v1.8.7 to fix the DDoS vulnerability issue
-
- Dec 18, 2021
-
-
Toan Nguyen authored
* update README for scalar tag
-
nizar-m authored
* Allow tagging of the field as having a scalar GraphQL type This change allows us to specify that a field in a struct has a scalar GraphQL type associated with it. This is done by adding the tag `scalar:"true"` to the field. This would allow us to - Avoid expansion of the field during request query generation, even when the golang type of the field is a struct - When the response is decoded, the value is simply JSON decoded, instead of the much stricter GraphQL decode. - Types like map[string]interface{}, json.RawMessage, etc should work as far as the corresponding fields are marked as scalar * Handle the error message where we are decoding as json.rawMessage Co-authored-by:
Nizar Malangadan <nizar-m@users.noreply.github.com>
-
- Dec 15, 2021
-
-
David Barroso authored
-