From 6db3f19896cac1960f1b7628459f8ac19112f95f Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Mon, 19 Sep 2016 09:49:25 -0700 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4461dd..f268a7d 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ class Query(graphene.ObjectType): def resolve_users(self): return UserModel.objects.all() -schema = graphene.Schema(query=QueryRoot) +schema = graphene.Schema(query=Query) ``` Then you can simply query the schema: