Module: Graphoid::Scalars

Defined in:
lib/graphoid/scalars.rb

Class Method Summary collapse

Class Method Details

.generateObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/graphoid/scalars.rb', line 9

def generate
  Graphoid::Scalars::DateTime ||= GraphQL::ScalarType.define do
    name 'DateTime'
    description 'DateTime ISO8601 formated'

    coerce_input lambda { |value, _|
      begin
        ::DateTime.iso8601(value)
      rescue Exception => ex
        GraphQL::ExecutionError.new(ex)
      end
    }
  end

  Graphoid::Scalars::Date ||= GraphQL::ScalarType.define do
    name 'Date'
    description 'Date ISO8601 formated'

    coerce_input lambda { |value, _|
      begin
        ::DateTime.iso8601(value)
      rescue Exception => ex
        GraphQL::ExecutionError.new(ex)
      end
    }
  end

  Graphoid::Scalars::Time ||= GraphQL::ScalarType.define do
    name 'Time'
    description 'Time ISO8601 formated'

    coerce_input lambda { |value, _|
      begin
        ::DateTime.iso8601(value)
      rescue Exception => ex
        GraphQL::ExecutionError.new(ex)
      end
    }
  end

  Graphoid::Scalars::Timestamp ||= GraphQL::ScalarType.define do
    name 'Timestamp'
    description 'Second elapsed since 1970-01-01'

    coerce_input lambda { |value, _|
      begin
        ::DateTime.iso8601(value)
      rescue Exception => ex
        GraphQL::ExecutionError.new(ex)
      end
    }
  end

  Graphoid::Scalars::Text ||= GraphQL::ScalarType.define do
    name 'Text'
    description 'Should be string? explain this please.'
  end

  Graphoid::Scalars::BigInt ||= GraphQL::ScalarType.define do
    name 'BigInt'
    description 'WTF ??'
  end

  Graphoid::Scalars::Decimal ||= GraphQL::ScalarType.define do
    name 'Decimal'
    description 'Define pliiiizzzzzzz'
  end

  Graphoid::Scalars::Hash ||= GraphQL::ScalarType.define do
    name 'Hash'
    description 'Hash scalar'
  end

  Graphoid::Scalars::Array ||= GraphQL::ScalarType.define do
    name 'Array'
    description 'Array scalar'
  end
end