graphql-client
graphql-client copied to clipboard
Typed, correct GraphQL requests and responses in Rust
https://github.com/mitsuhiko/insta
Ideally it would suggest corrections too.
We should provide them optionally (separate crates, or as opt-in features?) - Reqwest - actix-web - wasm in browsers (we could have to separate between stdweb and wasm-bindgen implementations) -...
https://github.com/facebook/graphql/pull/326 thanks to @xtian for mentioning it in #9
This would be useful to document exactly what code the library generates. The idea would be a static web page that takes a query, a schema and displays the generated...
Many projects in the rust community maintain guide-level documentation with gitbook and keep the top-level crate docs and the README minimal. So far every new feature has gone into the...
I haven't worked with property-based testing in Rust yet, so I don't know how feasible that would be. The use-case would be testing your code against any data that the...
The top-level struct should always be used (why compile a query if you intend to run it nowhere in your code?). Let's collect thoughts here. Related: #136
I don't have a lot of time to elaborate right now, but other graphql code generation CLIs support passing a glob of all query files to generate code for (e.g....
It'd be nice to have a way to dump all types from a schema into a module and then using that module to pull all of the data types for...