summaryrefslogtreecommitdiff
path: root/app/graphql/types/time_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/time_type.rb')
-rw-r--r--app/graphql/types/time_type.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/graphql/types/time_type.rb b/app/graphql/types/time_type.rb
new file mode 100644
index 00000000000..2333d82ad1e
--- /dev/null
+++ b/app/graphql/types/time_type.rb
@@ -0,0 +1,14 @@
+module Types
+ class TimeType < BaseScalar
+ graphql_name 'Time'
+ description 'Time represented in ISO 8601'
+
+ def self.coerce_input(value, ctx)
+ Time.parse(value)
+ end
+
+ def self.coerce_result(value, ctx)
+ value.iso8601
+ end
+ end
+end