Fix hyper examples link in README (#241)
This commit is contained in:
parent
f2f68f868a
commit
cc9aa6e011
1 changed files with 11 additions and 11 deletions
22
README.md
22
README.md
|
@ -13,10 +13,10 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
[GraphQL][graphql] is a data query language developed by Facebook intended to
|
[GraphQL][graphql] is a data query language developed by Facebook intended to
|
||||||
serve mobile and web application frontends.
|
serve mobile and web application frontends.
|
||||||
|
|
||||||
*Juniper* makes it possible to write GraphQL servers in Rust that are
|
*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
|
type-safe and blazingly fast. We also try to make declaring and resolving
|
||||||
GraphQL schemas as convenient as possible as Rust will allow.
|
GraphQL schemas as convenient as possible as Rust will allow.
|
||||||
|
|
||||||
Juniper does not include a web server - instead it provides building blocks to
|
Juniper does not include a web server - instead it provides building blocks to
|
||||||
|
@ -31,26 +31,26 @@ embedded [Graphiql][graphiql] for easy debugging.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
The best place to get started is the [Juniper Book][book], which contains
|
The best place to get started is the [Juniper Book][book], which contains
|
||||||
guides with plenty of examples, covering all features of Juniper. (very much WIP)
|
guides with plenty of examples, covering all features of Juniper. (very much WIP)
|
||||||
|
|
||||||
To get started quickly and get a feel for Juniper, check out the
|
To get started quickly and get a feel for Juniper, check out the
|
||||||
[Quickstart][book_quickstart] section.
|
[Quickstart][book_quickstart] section.
|
||||||
|
|
||||||
For specific information about macros, types and the Juniper api, the
|
For specific information about macros, types and the Juniper api, the
|
||||||
[API Reference][docsrs] is the best place to look.
|
[API Reference][docsrs] is the best place to look.
|
||||||
|
|
||||||
You can also check out [src/tests/schema.rs][test_schema_rs] to see a complex
|
You can also check out [src/tests/schema.rs][test_schema_rs] to see a complex
|
||||||
schema including polymorphism with traits and interfaces.
|
schema including polymorphism with traits and interfaces.
|
||||||
For an example of web framework integration,
|
For an example of web framework integration,
|
||||||
see the [hyper][hyper_examples], [rocket][rocket_examples], and [iron][iron_examples] examples folders.
|
see the [hyper][hyper_examples], [rocket][rocket_examples], and [iron][iron_examples] examples folders.
|
||||||
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
Juniper supports the full GraphQL query language according to the
|
Juniper supports the full GraphQL query language according to the
|
||||||
[specification][graphql_spec], including interfaces, unions, schema
|
[specification][graphql_spec], including interfaces, unions, schema
|
||||||
introspection, and validations.
|
introspection, and validations.
|
||||||
It does not, however, support the schema language.
|
It does not, however, support the schema language.
|
||||||
|
|
||||||
As an exception to other GraphQL libraries for other languages, Juniper builds
|
As an exception to other GraphQL libraries for other languages, Juniper builds
|
||||||
|
@ -91,7 +91,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
|
||||||
[graphql_spec]: http://facebook.github.io/graphql
|
[graphql_spec]: http://facebook.github.io/graphql
|
||||||
[test_schema_rs]: https://github.com/graphql-rust/juniper/blob/master/juniper/src/tests/schema.rs
|
[test_schema_rs]: https://github.com/graphql-rust/juniper/blob/master/juniper/src/tests/schema.rs
|
||||||
[tokio]: https://github.com/tokio-rs/tokio
|
[tokio]: https://github.com/tokio-rs/tokio
|
||||||
[hyper_examples]: https://github.com/graphql-rust/juniper/tree/master/hyper_rocket/examples
|
[hyper_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_hyper/examples
|
||||||
[rocket_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_rocket/examples
|
[rocket_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_rocket/examples
|
||||||
[iron_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_iron/examples
|
[iron_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_iron/examples
|
||||||
[Hyper]: https://hyper.rs
|
[Hyper]: https://hyper.rs
|
||||||
|
|
Loading…
Add table
Reference in a new issue