Add missing use declaration in Quickstart (#838)

Seems like the example code in the quickstart guide is missing an use declaration. 

The code fails to compile: `error: cannot find macro `graphql_value` in this scope` with `rustc 1.48.0 (7eac88abb 2020-11-16)`
This commit is contained in:
Nicolas Bonnet 2020-12-28 18:45:40 +01:00 committed by GitHub
parent 509438a5be
commit 4467b29153
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,7 +152,7 @@ You can invoke `juniper::execute` directly to run a GraphQL query:
# #[macro_use] extern crate juniper;
use juniper::{
graphql_object, EmptyMutation, EmptySubscription, FieldResult,
GraphQLEnum, Variables,
GraphQLEnum, Variables, graphql_value,
};
#[derive(GraphQLEnum, Clone, Copy)]