mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-04-23 02:22:08 +03:00
Run format
This commit is contained in:
parent
6d56bb4edb
commit
9a952031b3
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue
Block a user