From c4319b64498e964940da05becc3a68177675556c Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Wed, 15 Jul 2020 21:24:57 -1000 Subject: [PATCH] Update quickstart.md --- docs/book/content/quickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/book/content/quickstart.md b/docs/book/content/quickstart.md index dc663ecb..16821f76 100644 --- a/docs/book/content/quickstart.md +++ b/docs/book/content/quickstart.md @@ -22,7 +22,7 @@ naturally map to GraphQL features, such as `Option`, `Vec`, `Box`, For more advanced mappings, Juniper provides multiple macros to map your Rust types to a GraphQL schema. The most important one is the -[object][jp_object] procedural macro that is used for declaring an object with +[graphql_object][graphql_object] procedural macro that is used for declaring an object with resolvers, which you will use for the `Query` and `Mutation` roots. ```rust @@ -132,7 +132,7 @@ We now have a very simple but functional schema for a GraphQL server! To actually serve the schema, see the guides for our various [server integrations](./servers/index.md). -You can also invoke the executor directly to get a result for a query: +Juniper is a library that can be used in many contexts--it does not require a server and it does not have a dependency on a particular transport or serialization format. You can invoke the executor directly to get a result for a query: ## Executor @@ -202,4 +202,4 @@ fn main() { [rocket]: servers/rocket.md [iron]: servers/iron.md [tutorial]: ./tutorial.html -[jp_obj_macro]: https://docs.rs/juniper/latest/juniper/macro.object.html +[graphql_object]: https://docs.rs/juniper/latest/juniper/macro.graphql_object.html