From 582ac59bf78892860625213c13631122b8cd489e Mon Sep 17 00:00:00 2001 From: Eran Kampf Date: Mon, 8 Apr 2019 12:36:35 -0700 Subject: [PATCH] Another docs test --- docs/execution/execute.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/execution/execute.rst b/docs/execution/execute.rst index 79348445..f4a1e759 100644 --- a/docs/execution/execute.rst +++ b/docs/execution/execute.rst @@ -49,13 +49,13 @@ You can pass variables to a query via ``variables``. schema = graphene.Schema(Query) result = schema.execute( ''' - query getUser($id: ID) { - user(id: $id) { - id - firstName - lastName - } + query getUser($id: ID) { + user(id: $id) { + id + firstName + lastName } + } ''', variables={'id': 12}, )