Skip to content

Commit 3f73a6a

Browse files
authored
Fix list of unions for graphql_fields (#41)
1 parent d388e92 commit 3f73a6a

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

graphql_query/base_model.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,20 @@ def _get_fields(model: Type['GraphQLQueryBaseModel']) -> List[Union[str, Field,
3838
list_args = get_args(f.annotation)[0]
3939

4040
_field_template.name = f_name
41-
_field_template.fields = _get_fields(list_args)
41+
42+
if get_origin(list_args) is Union:
43+
union_args = [union_arg for union_arg in get_args(list_args) if union_arg is not type(None)]
44+
45+
if len(union_args) == 1:
46+
_field_template.fields = _get_fields(union_args[0])
47+
48+
else:
49+
_field_template.fields = [
50+
InlineFragment(type=union_arg.__name__, fields=_get_fields(union_arg))
51+
for union_arg in union_args
52+
]
53+
else:
54+
_field_template.fields = _get_fields(list_args)
4255

4356
#
4457
# union type

tests/tests_base_model/test_inline_fragment.py

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Union
1+
from typing import Union, List
22

33
from graphql_query import Field, GraphQLQueryBaseModel, InlineFragment
44

@@ -13,6 +13,7 @@ class Human(GraphQLQueryBaseModel):
1313
class Hero(GraphQLQueryBaseModel):
1414
name: str
1515
type: Union[Human, Droid]
16+
types: List[Union[Human, Droid]]
1617

1718
correct = [
1819
Field(name="name", fields=[]),
@@ -23,6 +24,13 @@ class Hero(GraphQLQueryBaseModel):
2324
InlineFragment(type="Droid", fields=[Field(name="primaryFunction", fields=[])]),
2425
],
2526
),
27+
Field(
28+
name="types",
29+
fields=[
30+
InlineFragment(type="Human", fields=[Field(name="height", fields=[])]),
31+
InlineFragment(type="Droid", fields=[Field(name="primaryFunction", fields=[])]),
32+
],
33+
),
2634
]
2735
generated = Hero.graphql_fields()
2836

@@ -39,5 +47,13 @@ class Hero(GraphQLQueryBaseModel):
3947
primaryFunction
4048
}
4149
}
50+
types {
51+
... on Human {
52+
height
53+
}
54+
... on Droid {
55+
primaryFunction
56+
}
57+
}
4258
}"""
4359
)

0 commit comments

Comments
 (0)