Sha256: 2f1944b4411f3bd3b23a5e18b051810f3fc0014eb960ebd421d46af7b68fa907
Contents?: true
Size: 536 Bytes
Versions: 212
Compression:
Stored size: 536 Bytes
Contents
# frozen_string_literal: true module GraphQL module StaticValidation class SubscriptionRootExistsError < 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 "missingSubscriptionConfiguration" end end end end
Version data entries
212 entries across 212 versions & 2 rubygems