Skip to content

Commit bbd9e7d

Browse files
committed
Revert change of GraphQLResolveInfo.field_info type
1 parent 32dce55 commit bbd9e7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/graphql/type/definition.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Collection,
66
Dict,
77
Generic,
8+
List,
89
Mapping,
910
NamedTuple,
1011
Optional,
@@ -583,7 +584,7 @@ class GraphQLResolveInfo(NamedTuple):
583584
"""
584585

585586
field_name: str
586-
field_nodes: Collection[FieldNode]
587+
field_nodes: List[FieldNode]
587588
return_type: "GraphQLOutputType"
588589
parent_type: "GraphQLObjectType"
589590
path: Path

0 commit comments

Comments
 (0)