mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-09 08:00:39 +03:00
added time type
This commit is contained in:
parent
5cfa895881
commit
dddb20a0f4
|
@ -9,9 +9,10 @@ Graphene defines the following base Scalar Types:
|
||||||
- ``graphene.Boolean``
|
- ``graphene.Boolean``
|
||||||
- ``graphene.ID``
|
- ``graphene.ID``
|
||||||
|
|
||||||
Graphene also provides custom scalars for Dates and JSON:
|
Graphene also provides custom scalars for Dates, Times, and JSON:
|
||||||
|
|
||||||
- ``graphene.types.datetime.DateTime``
|
- ``graphene.types.datetime.DateTime``
|
||||||
|
- ``graphene.types.datetime.Time``
|
||||||
- ``graphene.types.json.JSONString``
|
- ``graphene.types.json.JSONString``
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,37 @@ class DateTime(Scalar):
|
||||||
)
|
)
|
||||||
return dt.isoformat()
|
return dt.isoformat()
|
||||||
|
|
||||||
@staticmethod
|
@classmethod
|
||||||
def parse_literal(node):
|
def parse_literal(cls, node):
|
||||||
if isinstance(node, ast.StringValue):
|
if isinstance(node, ast.StringValue):
|
||||||
return iso8601.parse_date(node.value)
|
return cls.parse_value(node.value)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def parse_value(value):
|
def parse_value(value):
|
||||||
return iso8601.parse_date(value)
|
return iso8601.parse_date(value)
|
||||||
|
|
||||||
|
|
||||||
|
class Time(Scalar):
|
||||||
|
'''
|
||||||
|
The `Time` scalar type represents a Time value as
|
||||||
|
specified by
|
||||||
|
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
||||||
|
'''
|
||||||
|
epoch_date = '1970-01-01'
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def serialize(time):
|
||||||
|
assert isinstance(time, datetime.time), (
|
||||||
|
'Received not compatible time "{}"'.format(repr(time))
|
||||||
|
)
|
||||||
|
return time.isoformat()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def parse_literal(cls, node):
|
||||||
|
if isinstance(node, ast.StringValue):
|
||||||
|
return cls.parse_value(node.value)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def parse_value(cls, value):
|
||||||
|
dt = iso8601.parse_date('{}T{}'.format(cls.epocj_time, value))
|
||||||
|
return datetime.time(dt.hour, dt.minute, dt.second, dt.microsecond, dt.tzinfo)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user