lib/graphql/static_validation/rules/fragments_are_named.rb



# frozen_string_literal: true
module GraphQL
  module StaticValidation
    module FragmentsAreNamed
      def on_fragment_definition(node, _parent)
        if node.name.nil?
          add_error(GraphQL::StaticValidation::FragmentsAreNamedError.new(
            "Fragment definition has no name",
            nodes: node
          ))
        end
        super
      end
    end
  end
end