We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a48c3 commit 495361eCopy full SHA for 495361e
graphene/relay/connection.py
@@ -82,7 +82,7 @@ class EdgeBase(AbstractType):
82
83
class ConnectionBase(AbstractType):
84
page_info = Field(PageInfo, name='pageInfo', required=True)
85
- edges = List(edge)
+ edges = NonNull(List(edge))
86
87
bases = (ConnectionBase, ) + bases
88
attrs = dict(attrs, _meta=options, Edge=edge)
0 commit comments