graphql-client icon indicating copy to clipboard operation
graphql-client copied to clipboard

graphql client for java

Results 16 graphql-client issues
Sort by recently updated
recently updated
newest added

query { repository(name: "") { comparison(base:"",head:""){ fileDiffs{ nodes{ hunks{ body } } } } } } 如何支持这种查询,目前GraphqlQuery好像无法嵌套?

比如请求,这个工具怎么用? ``` mutation a($demo: String!) { updateCustomer(demo: $demo) { ... on MutationSuccess { result } ... on MutationError { errorCode } } } ```

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10.7 to 2.12.7.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.9.10.7&new-version=2.12.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Hi Team, We are consuming data from Pluralsight, where we have to filter the data on the basis of startDate and endDate. That support is not available in this library,...

如果填了query.addResultAttributes("XXX");会报错返回如下信息: Validation error of type SubSelectionNotAllowed: Sub selection not allowed on leaf type Long! 如果不填query.addResultAttributes("XXX");会报错返回如下信息: Invalid Syntax : offending token '}' at line 1 column 187

``` usesByIds(input: { userIds: $userIds, type: $type }) { id name createdAt } ``` 这种input格式如何支持?

Bumps [gson](https://github.com/google/gson) from 2.8.5 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...

dependencies

mutation 字符串有问题吧? ![image](https://user-images.githubusercontent.com/48872475/169465226-78a520c2-b318-4879-8c8e-a4acc5618b28.png)

漏了这一行代码:`query.addResultAttributes(classAttributte);` **classAttributte 并没有被添加进 query的ResultAttributes里面** 应该加在:`ResultAttributtes classAttributte= new ResultAttributtes("class");`这一行的下面