Skip to content

Commit

Permalink
Edges should be NonNull
Browse files Browse the repository at this point in the history
  • Loading branch information
ekampf committed Oct 27, 2016
1 parent c7a48c3 commit 495361e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphene/relay/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class EdgeBase(AbstractType):

class ConnectionBase(AbstractType):
page_info = Field(PageInfo, name='pageInfo', required=True)
edges = List(edge)
edges = NonNull(List(edge))

bases = (ConnectionBase, ) + bases
attrs = dict(attrs, _meta=options, Edge=edge)
Expand Down

0 comments on commit 495361e

Please sign in to comment.