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 = {
"reporter": {
"lastName": "ABA",
'pets': {'edges': [{'node': {
'lastName': 'Griffin',
'pets': {'edges': [{'node': {
'lastName': 'ABA',
} } ] }
} } ] },
},
"pets": {
"edges": [
{
"node": {
"lastName": "Griffin",
"pets": {"edges": [{"node": {"lastName": "ABA"}}]},
}
}
]
},
}
}
schema = graphene.Schema(query=Query)
result = schema.execute(