Update schema.rst

This commit is contained in:
Justin Miller 2021-04-12 23:08:42 -07:00 committed by GitHub
parent db9d9a08f2
commit 12302b78f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,8 +71,6 @@ For example with the ObjectType the ``last_name`` field name is converted to ``l
last_name = graphene.String()
other_name = graphene.String(name='_other_Name')
In case you don't want to apply this transformation, provide a ``name`` argument to the field constructor.
``other_name`` converts to ``_other_Name`` (without further transformations).