summaryrefslogtreecommitdiff
path: root/app/graphql/types/time_type.rb
blob: c31e4873df0771a330f4058fface2e8dbf3f88e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Types
  class TimeType < BaseScalar
    graphql_name 'Time'
    description 'Time represented in ISO 8601'

    def self.coerce_input(value, ctx)
      Time.parse(value)
    rescue ArgumentError, TypeError => e
      raise GraphQL::CoercionError, e.message
    end

    def self.coerce_result(value, ctx)
      value.iso8601
    end
  end
end