Steve Coffman
Steve Coffman
It seems like most of the GraphQL federation gateways have found that there is an irreconcilable tension between the frontend and the backend. The client by nature always wants to...
I wonder if the solution is likely to be (compiled or codegen) client-driven _**de-federation**_. Most GraphQL APIs require SafeLists to operate publically and avoid complexity attacks. These SafeLists can be...
@lkeix the benchmarking is very helpful! In #2842 it was proposed to allow JSON configuration to be configurable, and several people in the community have warned me against defaulting to...
PRs are welcome!
@cyrilc-pro Great suggestion! Please make a PR!
Sure, this would be a good config option to add so people could opt-in. A PR would be welcome!
Hi! A PR that fixes this without regressing the original problem would be welcome. Thanks!
Yes. You can use `ParseQueryWithTokenLimit`
@dependabot recreate
Code in question looks like this: ``` func findTopLevelGitDir(workingDir string) (string, error) { dir, err := filepath.Abs(workingDir) if err != nil { return "", errors.Wrap(err, "invalid working dir") } for...