juniper
juniper copied to clipboard
GraphQL server library for Rust
This PR improves/updates CI pipeline and project toolchain. - [x] switch to `dtolnay/rust-toolchain` GitHub action - [x] revert to `-v` format of release Git tag - [x] enable MSRV check...
## Describe the bug The compile-time ``the trait `IntoResolvable
While working on #1101 , I thought of a couple more possible improvements. For one, I think it would be useful to make `parse_req` and `execute_request[_sync]` public. With that, it...
I am using the Juniper Rocket example. The POST endpoint and GraphiQL interface work for me, but I can't figure out how to send a GET request. (I'm also new...
Fixes #819 This is an experiment that uses [arcstr::ArcStr](https://docs.rs/arcstr/1.1.5/arcstr/index.html) for storing strings within the GraphQL schema. String literals that are constant/come from macros no longer allocate memory. `ArcStr` appears to...
Was exploring the mongodb driver in rust with juniper, i was trying to retrieve the _id of the mongodb with ```ObjectId```, found out that the traits in this juniper crate...
Types can be used to generate a RootNode dynamically. This is a quick fix for #1117. if this looks good, I can create a few more PRs that make some...
Resolves #1120 ## Synopsis > Currently in draft but it is an official project: > > https://graphql.github.io/graphql-over-http/draft/ ## Checklist - [ ] Correct [media type for responses](https://graphql.github.io/graphql-over-http/draft/#sec-Media-Types) and [appropriate response...
Currently in draft but it is an official project: https://graphql.github.io/graphql-over-http/draft/
Authentication and other checks can be included in the generated schema using directives. Is it possible to do that juniper right now? I'm trying to add auth checks for certain...