syntax error solved for dictionary type

This commit is contained in:
Ali Reza Yahyapour 2020-09-22 18:42:47 +03:30 committed by GitHub
parent 8c327fc4ed
commit 072e016183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ When we execute a query against that schema.
query_string = "{ me { fullName } }" query_string = "{ me { fullName } }"
result = schema.execute(query_string) 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: Then we go through the following steps to resolve this query: