juniper/docs/book/content
Kai Ren 3472fe6d10
Fix attributes naming on fields and arguments for interfaces and unions (#806)
Additionally:
- revive macros/tests/object
- revive executor_tests/interfaces_unions
2020-11-14 15:41:01 +02:00
..
advanced Default to generic ScalarValue in #[graphql_object] macro (#779) 2020-11-06 18:15:18 -08:00
schema Default to generic ScalarValue in #[graphql_object] macro (#779) 2020-11-06 18:15:18 -08:00
servers doc: remove outdated examples from third-party integrations list (#572) 2020-03-18 20:46:32 -07:00
styles (book) Update and fix book compilation and tests 2019-03-08 11:47:13 +01:00
types Fix attributes naming on fields and arguments for interfaces and unions (#806) 2020-11-14 15:41:01 +02:00
quickstart.md Default to generic ScalarValue in #[graphql_object] macro (#779) 2020-11-06 18:15:18 -08:00
README.md Add bson crate's ObjectId to juniper foreign scalar type integrations (#517) 2020-02-12 23:49:50 -07:00
SUMMARY.md Add ability to distinguish between implicit and explicit null (#795) 2020-10-23 19:21:37 -04:00

Juniper

Juniper is a GraphQL server library for Rust. Build type-safe and fast API servers with minimal boilerplate and configuration.

GraphQL is a data query language developed by Facebook intended to serve mobile and web application frontends.

Juniper makes it possible to write GraphQL servers in Rust that are type-safe and blazingly fast. We also try to make declaring and resolving GraphQL schemas as convenient as possible as Rust will allow.

Juniper does not include a web server - instead it provides building blocks to make integration with existing servers straightforward. It optionally provides a pre-built integration for the Hyper, Iron, Rocket, and Warp frameworks, including embedded Graphiql for easy debugging.

Features

Juniper supports the full GraphQL query language according to the specification, including interfaces, unions, schema introspection, and validations. It does not, however, support the schema language.

As an exception to other GraphQL libraries for other languages, Juniper builds non-null types by default. A field of type Vec<Episode> will be converted into [Episode!]!. The corresponding Rust type for e.g. [Episode] would be Option<Vec<Option<Episode>>>.

Integrations

Data types

Juniper has automatic integration with some very common Rust crates to make building schemas a breeze. The types from these crates will be usable in your Schemas automatically.

Web Frameworks

API Stability

Juniper has not reached 1.0 yet, thus some API instability should be expected.