cortex-cms/cortex

View on GitHub
app/graphql/cortex/types/date_time_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  Types::DateTimeType = GraphQL::ScalarType.define do
    name 'DateTime'

    coerce_input ->(value, _ctx) { Time.zone.parse(value) }
    coerce_result ->(value, _ctx) { value.utc.iso8601 }
  end
end