mirror of
https://github.com/graphql-python/graphene.git
synced 2025-09-21 19:32:33 +03:00
Merge branch 'master' into update-object-type-docs-resolver
This commit is contained in:
commit
38db79c257
|
@ -194,4 +194,17 @@ previous example you could do:
|
||||||
peter.first_name # prints "Peter"
|
peter.first_name # prints "Peter"
|
||||||
peter.last_name # prints "Griffin"
|
peter.last_name # prints "Griffin"
|
||||||
|
|
||||||
|
Changing the name
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
By default the type name in the GraphQL schema will the same as the class name
|
||||||
|
that defines the ``ObjectType``. This can be changed by setting the ``name``
|
||||||
|
property on the ``Meta`` class:
|
||||||
|
|
||||||
|
.. code:: python
|
||||||
|
|
||||||
|
class MyGraphQlSong(graphene.ObjectType):
|
||||||
|
class Meta:
|
||||||
|
name = 'Song'
|
||||||
|
|
||||||
.. _Interface: /docs/interfaces/
|
.. _Interface: /docs/interfaces/
|
||||||
|
|
Loading…
Reference in New Issue
Block a user