37 releases

0.16.1 Apr 4, 2024
0.16.0 Mar 20, 2024
0.15.12 Jan 2, 2024
0.15.11 Jan 31, 2023
0.5.2 Nov 13, 2016

#31 in Asynchronous

Download history 13411/week @ 2024-01-03 10040/week @ 2024-01-10 10689/week @ 2024-01-17 10575/week @ 2024-01-24 10878/week @ 2024-01-31 10276/week @ 2024-02-07 10281/week @ 2024-02-14 11853/week @ 2024-02-21 12018/week @ 2024-02-28 14194/week @ 2024-03-06 12045/week @ 2024-03-13 12522/week @ 2024-03-20 14146/week @ 2024-03-27 12901/week @ 2024-04-03 14447/week @ 2024-04-10 10605/week @ 2024-04-17

54,369 downloads per month
Used in 79 crates (69 directly)

BSD-2-Clause

1.5MB
37K SLoC

Juniper (GraphQL server library for Rust)

Crates.io Documentation CI Rust 1.73+

GraphQL is a data query language developed by Facebook and 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 Rust will allow.

Juniper doesn't include a web server - instead it provides building blocks to make integration with existing servers straightforward, including embedded GraphiQL and/or GraphQL Playground for easy debugging.

Getting Started

The best place to get started is Juniper Book, which contains guides with plenty of examples, covering all features of Juniper.

To get started quickly and get a feel for Juniper, check out the "Quickstart" section.

For specific information about macros, types and the Juniper API, the API docs is the best place to look.

Features

Juniper supports the full GraphQL query language according to October 2021 GraphQL 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

Types

Juniper provides out-of-the-box integration for some very common Rust crates to make building schemas a breeze. The types from these crates will be usable in your schemas automatically after enabling the correspondent self-titled Cargo feature:

Web server frameworks

API stability

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

License

This project is licensed under BSD 2-Clause License.

Dependencies

~3–14MB
~174K SLoC