graphene/docs/types/scalars.rst

77 lines
1.7 KiB
ReStructuredText
Raw Normal View History

Scalars
=======
Graphene defines the following base Scalar Types:
2016-09-21 11:16:35 +03:00
- ``graphene.String``
- ``graphene.Int``
- ``graphene.Float``
- ``graphene.Boolean``
- ``graphene.ID``
2016-11-23 02:04:22 +03:00
Graphene also provides custom scalars for Dates, Times, and JSON:
2016-09-21 11:16:35 +03:00
2017-11-29 16:32:17 +03:00
- ``graphene.types.datetime.Date``
- ``graphene.types.datetime.DateTime``
2016-11-23 02:04:22 +03:00
- ``graphene.types.datetime.Time``
- ``graphene.types.json.JSONString``
Custom scalars
--------------
You can create custom scalars for your schema.
The following is an example for creating a DateTime scalar:
.. code:: python
import datetime
from graphene.types import Scalar
from graphql.language import ast
class DateTime(Scalar):
'''DateTime Scalar Description'''
@staticmethod
def serialize(dt):
return dt.isoformat()
@staticmethod
def parse_literal(node):
if isinstance(node, ast.StringValue):
return datetime.datetime.strptime(
node.value, "%Y-%m-%dT%H:%M:%S.%f")
@staticmethod
def parse_value(value):
return datetime.datetime.strptime(value, "%Y-%m-%dT%H:%M:%S.%f")
Mounting Scalars
----------------
Scalars mounted in a ``ObjectType``, ``Interface`` or ``Mutation`` act as
``Field``\ s.
.. code:: python
class Person(graphene.ObjectType):
name = graphene.String()
# Is equivalent to:
class Person(graphene.ObjectType):
name = graphene.Field(graphene.String)
2016-11-04 00:17:37 +03:00
**Note:** when using the ``Field`` constructor directly, pass the type and
not an instance.
Types mounted in a ``Field`` act as ``Argument``\ s.
.. code:: python
graphene.Field(graphene.String, to=graphene.String())
# Is equivalent to:
2017-02-21 08:57:39 +03:00
graphene.Field(graphene.String, to=graphene.Argument(graphene.String))