From 6918db1033269a79d7e2370d51e66da383302f4b Mon Sep 17 00:00:00 2001 From: "Daniel T. Plop" Date: Wed, 12 Aug 2020 23:44:00 +0200 Subject: [PATCH] Fix Typo in Docs (#1252) The example of executing a query by passing a root value had a typo for the trailing parenthesis, namely it was '}' instead of ')'. --- docs/execution/execute.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/execution/execute.rst b/docs/execution/execute.rst index 4bb5613e..23be0b42 100644 --- a/docs/execution/execute.rst +++ b/docs/execution/execute.rst @@ -85,7 +85,7 @@ Value used for :ref:`ResolverParamParent` in root queries and mutations can be o return {'id': root.id, 'firstName': root.name} schema = Schema(Query) - user_root = User(id=12, name='bob'} + user_root = User(id=12, name='bob') result = schema.execute( ''' query getUser {