Sha256: cd1c5b306b03de149771b90548faadf32afc9b70be823857aa10781aad7aead7
Contents?: true
Size: 534 Bytes
Versions: 191
Compression:
Stored size: 534 Bytes
Contents
# frozen_string_literal: true module GraphQL module StaticValidation class NoDefinitionsArePresentError < 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 "queryContainsSchemaDefinitions" end end end end
Version data entries
191 entries across 191 versions & 2 rubygems