Update graphene/types/inputfield.py

Co-Authored-By: Jonathan Kim <jkimbo@gmail.com>
This commit is contained in:
David Anderson 2019-06-04 17:52:27 -04:00 committed by Dave A
parent 2b01a8ece2
commit 0bd4d93288

View File

@ -34,7 +34,7 @@ class InputField(MountedType):
deprecation_reason (optional, str): Setting this value indicates that the field is deprecation_reason (optional, str): Setting this value indicates that the field is
depreciated and may provide instruction or reason on how for clients to proceed. depreciated and may provide instruction or reason on how for clients to proceed.
description (optional, str): the description of the GraphQL field in the schema. description (optional, str): the description of the GraphQL field in the schema.
required (optional, bool). Indicates this input field as not null in the graphql scehma. required (optional, bool): indicates this input field as not null in the graphql scehma.
Raises a validation error if argument not provided. Same behavior as graphene.NonNull. Raises a validation error if argument not provided. Same behavior as graphene.NonNull.
Default False. Default False.
**extra_args (optional, Dict): Not used. **extra_args (optional, Dict): Not used.