Run format

This commit is contained in:
Jonathan Kim 2019-08-04 07:56:09 +01:00
parent 6d56bb4edb
commit 9a952031b3

View File

@ -99,13 +99,17 @@ def test_should_query_nested_field():
expected = { expected = {
"reporter": { "reporter": {
"lastName": "ABA", "lastName": "ABA",
'pets': {'edges': [{'node': { "pets": {
'lastName': 'Griffin', "edges": [
'pets': {'edges': [{'node': { {
'lastName': 'ABA', "node": {
} } ] } "lastName": "Griffin",
} } ] }, "pets": {"edges": [{"node": {"lastName": "ABA"}}]},
}, }
}
]
},
}
} }
schema = graphene.Schema(query=Query) schema = graphene.Schema(query=Query)
result = schema.execute( result = schema.execute(