From 7cf4b46f57d28ce810c64a519a77a94201a56afa Mon Sep 17 00:00:00 2001 From: changeling Date: Sun, 12 May 2019 13:15:21 -0500 Subject: [PATCH] Corrected typos in docs/queries.rst. --- docs/queries.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/queries.rst b/docs/queries.rst index d54c908..a266ecf 100644 --- a/docs/queries.rst +++ b/docs/queries.rst @@ -30,7 +30,7 @@ Full example class Query: questions = graphene.List(QuestionType) - question = graphene.Field(Question, question_id=graphene.String()) + question = graphene.Field(QuestionType, question_id=graphene.String()) def resolve_questions(self, info, **kwargs): # Querying a list @@ -254,7 +254,7 @@ Full example class QuestionType(DjangoObjectType): class Meta: model = Question - interaces = (relay.Node,) + interfaces = (relay.Node,) class QuestionConnection(relay.Connection):