mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
Update basic schema with arguments
This commit is contained in:
parent
b8323ed8e7
commit
06757f10c6
|
@ -30,17 +30,17 @@ server with an associated set of resolve methods that know how to fetch
|
||||||
data.
|
data.
|
||||||
|
|
||||||
We are going to create a very simple schema, with a ``Query`` with only
|
We are going to create a very simple schema, with a ``Query`` with only
|
||||||
one field: ``hello``. And when we query it, it should return ``"World"``.
|
one field: ``hello`` and an input name. And when we query it, it should return ``"Hello {name}"``.
|
||||||
|
|
||||||
.. code:: python
|
.. code:: python
|
||||||
|
|
||||||
import graphene
|
import graphene
|
||||||
|
|
||||||
class Query(graphene.ObjectType):
|
class Query(graphene.ObjectType):
|
||||||
hello = graphene.String()
|
hello = graphene.String(name=graphene.Argument(graphene.String, default_value="stranger"))
|
||||||
|
|
||||||
def resolve_hello(self, args, context, info):
|
def resolve_hello(self, args, context, info):
|
||||||
return 'World'
|
return 'Hello ' + args['name']
|
||||||
|
|
||||||
schema = graphene.Schema(query=Query)
|
schema = graphene.Schema(query=Query)
|
||||||
|
|
||||||
|
@ -52,6 +52,6 @@ Then we can start querying our schema:
|
||||||
.. code:: python
|
.. code:: python
|
||||||
|
|
||||||
result = schema.execute('{ hello }')
|
result = schema.execute('{ hello }')
|
||||||
print result.data['hello'] # "World"
|
print result.data['hello'] # "Hello stranger"
|
||||||
|
|
||||||
Congrats! You got your first graphene schema working!
|
Congrats! You got your first graphene schema working!
|
||||||
|
|
Loading…
Reference in New Issue
Block a user