cynic icon indicating copy to clipboard operation
cynic copied to clipboard

A bring your own types GraphQL client library for Rust

Results 128 cynic issues
Sort by recently updated
recently updated
newest added

Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.6 to 0.11.9. Release notes Sourced from reqwest's releases. v0.11.9 Add ClientBuilder::http09_responses(bool) option to allow receiving HTTP/0.9 responses. Fix HTTP/2 to retry requests interrupted by an HTTP/2...

🤖 dependencies
rust

Bumps [once_cell](https://github.com/matklad/once_cell) from 1.9.0 to 1.13.0. Changelog Sourced from once_cell's changelog. 1.13.0 Add Lazy::get, similar to OnceCell::get. 1.12.1 Remove incorrect debug_assert. 1.12.0 Add OnceCell::wait, a blocking variant of get. 1.11.0...

🤖 dependencies
rust

Bumps [rust_decimal](https://github.com/paupino/rust-decimal) from 1.22.0 to 1.25.0. Changelog Sourced from rust_decimal's changelog. 1.25.0 Added Expands rand support to implement SampleUniform to allow for rng.gen_range calls (#519) Adds rkyv framework support for...

🤖 dependencies
rust

Bumps [esbuild](https://github.com/evanw/esbuild) from 0.14.26 to 0.14.51. Release notes Sourced from esbuild's releases. v0.14.51 Add support for React 17's automatic JSX transform (#334, #718, #1172, #2318, #2349) This adds support for...

🤖 dependencies
javascript

Bumps [graphiql](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql) from 1.7.1 to 1.10.0. Release notes Sourced from graphiql's releases. [email protected] Minor Changes #2574 0c98fa59 Thanks @​thomasheyenbrock! - Allow passing introspection data to the schema prop of the...

🤖 dependencies
javascript

This function infinitely recurses if it finds an input object that contains itself: https://github.com/obmarg/cynic/blob/master/cynic-querygen/src/query_parsing/inputs.rs#L181-L211

🐞 bug

This gives a kind of crap error just now, could easily be improved: ``` #[derive(cynic::InputObject)] #[cynic( graphql_type = "Query", schema_path = "tests/test-schema.graphql", )] struct BlogPost { Content: String, #[cynic(rename =...

I'm not entirely sure what's needed to do this, or in what ways it breaks. The first step of this issue will be to try and generate some code from...

✨ enhancement

#391 refactored the way variables work. I'm not 100% happy with the errors that you get if you use a variable that doesn't exist, or use an incorrect type. This...

✨ enhancement