From 072e016183caaafc110d932f93cc8bf819a2bd05 Mon Sep 17 00:00:00 2001 From: Ali Reza Yahyapour Date: Tue, 22 Sep 2020 18:42:47 +0330 Subject: [PATCH] syntax error solved for dictionary type --- docs/types/objecttypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types/objecttypes.rst b/docs/types/objecttypes.rst index 29d3954c..3cc8d830 100644 --- a/docs/types/objecttypes.rst +++ b/docs/types/objecttypes.rst @@ -102,7 +102,7 @@ When we execute a query against that schema. query_string = "{ me { fullName } }" result = schema.execute(query_string) - assert result.data["me"] == {"fullName": "Luke Skywalker") + assert result.data["me"] == {"fullName": "Luke Skywalker"} Then we go through the following steps to resolve this query: