From 877692072377c0d99ca766fb4fac042b99553cd4 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Wed, 26 Jun 2019 10:00:18 +0100 Subject: [PATCH] Update docs/queries.rst Co-Authored-By: Semyon Pupkov --- docs/queries.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/queries.rst b/docs/queries.rst index 862dd32..7d2dc9c 100644 --- a/docs/queries.rst +++ b/docs/queries.rst @@ -85,7 +85,7 @@ Show all fields **except** those in ``exclude``: class QuestionType(DjangoObjectType): class Meta: model = Question - exclude = ('question_text') + exclude = ('question_text', ) Customising fields