Sha256: 0ee7771a5b0c931ed94ac756749a2df84e23a3f1f3570a8be8c4b459e1813992

Contents?: true

Size: 1.55 KB

Versions: 13

Compression:

Stored size: 1.55 KB

Contents

module GraphQL
  module StaticValidation
    class FragmentsAreUsed
      include GraphQL::StaticValidation::Message::MessageHelper

      def validate(context)
        v = context.visitor
        used_fragments = []
        defined_fragments = []

        v[GraphQL::Language::Nodes::Document] << -> (node, parent) {
          defined_fragments = node.definitions.select { |defn| defn.is_a?(GraphQL::Language::Nodes::FragmentDefinition) }
        }

        v[GraphQL::Language::Nodes::FragmentSpread] << -> (node, parent) {
          used_fragments << node
          if defined_fragments.none? { |defn| defn.name == node.name }
            GraphQL::Language::Visitor::SKIP
          end
        }
        v[GraphQL::Language::Nodes::Document].leave << -> (node, parent) { add_errors(context.errors, used_fragments, defined_fragments) }
      end

      private

      def add_errors(errors, used_fragments, defined_fragments)
        undefined_fragments = find_difference(used_fragments, defined_fragments.map(&:name))
        undefined_fragments.each do |fragment|
          errors << message("Fragment #{fragment.name} was used, but not defined", fragment)
        end

        unused_fragments = find_difference(defined_fragments, used_fragments.map(&:name))
        unused_fragments.each do |fragment|
          errors << message("Fragment #{fragment.name} was defined, but not used", fragment)
        end
      end

      def find_difference(fragments, allowed_fragment_names)
        fragments.select {|f| !allowed_fragment_names.include?(f.name) }
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
graphql-0.17.2 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.17.1 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.17.0 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.16.1 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.16.0 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.15.3 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.15.2 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.14.2 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.15.1 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.15.0 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.14.1 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.14.0 lib/graphql/static_validation/rules/fragments_are_used.rb
graphql-0.13.0 lib/graphql/static_validation/rules/fragments_are_used.rb