From 12302b78f997669f84300ebc9058ff5380e43ca9 Mon Sep 17 00:00:00 2001 From: Justin Miller Date: Mon, 12 Apr 2021 23:08:42 -0700 Subject: [PATCH] Update schema.rst --- docs/types/schema.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/types/schema.rst b/docs/types/schema.rst index c98684b7..a82addc9 100644 --- a/docs/types/schema.rst +++ b/docs/types/schema.rst @@ -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).