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.
2 parents 5a92330 + 6a15282 commit c585982Copy full SHA for c585982
graphene_django/rest_framework/types.py
@@ -3,8 +3,8 @@
3
4
5
class ErrorType(graphene.ObjectType):
6
- field = graphene.String()
7
- messages = graphene.List(graphene.String)
+ field = graphene.String(required=True)
+ messages = graphene.List(graphene.NonNull(graphene.String), required=True)
8
9
10
class DictType(UnmountedType):
0 commit comments