joaquimadraz/compel

View on GitHub
lib/compel/coercion/types/json.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'json'

module Compel
  module Coercion

    class JSON < Type

      def coerce_value
        ::JSON.parse(value) rescue nil
      end

    end

  end
end