mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-14 05:36:45 +03:00
10 lines
200 B
Python
10 lines
200 B
Python
|
|
from ..schema import Droid
|
|
|
|
|
|
def test_query_types():
|
|
graphql_type = Droid._meta.graphql_type
|
|
fields = graphql_type.get_fields()
|
|
assert fields['friends'].parent == Droid
|
|
assert fields
|