Sha256: 1c9c82fcf8e3fba9fbebdc2efcabe91d8f09e82656adf4bae66bcef0b8d998e4
Contents?: true
Size: 516 Bytes
Versions: 191
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true module GraphQL module StaticValidation class FragmentsAreNamedError < StaticValidation::Error def initialize(message, path: nil, nodes: []) super(message, path: path, nodes: nodes) end # A hash representation of this Message def to_h extensions = { "code" => code, } super.merge({ "extensions" => extensions }) end def code "anonymousFragment" end end end end
Version data entries
191 entries across 191 versions & 2 rubygems