1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# frozen_string_literal: true
module GraphQL
module Types
# An untyped JSON scalar that maps to Ruby hashes, arrays, strings, integers, floats, booleans and nils.
# This should be used judiciously because it subverts the GraphQL type system.
#
# Use it for fields or arguments as follows:
#
# field :template_parameters, GraphQL::Types::JSON, null: false
#
# argument :template_parameters, GraphQL::Types::JSON, null: false
#
class JSON < GraphQL::Schema::Scalar
description "Represents untyped JSON"
def self.coerce_input(value, _context)
value
end
def self.coerce_result(value, _context)
value
end
end
end
end
|