juniper icon indicating copy to clipboard operation
juniper copied to clipboard

GraphQL server library for Rust

Results 129 juniper issues
Sort by recently updated
recently updated
newest added

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...

tooling

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...

enhancement
k::api
k::integration
lib::hyper

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...

bug
integration

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...

enhancement
semver::breaking
k::api
k::performance
k::refactor

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...

enhancement
k::integration
k::dependencies
rust
lib::bson

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...

enhancement
k::api

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...

enhancement
k::api
lib::rocket
k::integration
lib::actix
lib::warp
lib::axum
lib::hyper
research

Currently in draft but it is an official project: https://graphql.github.io/graphql-over-http/draft/

enhancement
k::api
lib::rocket
k::integration
lib::actix
lib::warp
lib::axum
lib::hyper
research

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...

enhancement
help wanted