Sha256: 7c9edca129d797397d040e1e68879a0c66ab6bdccea9021005ff51ede99ef1ef

Contents?: true

Size: 1.27 KB

Versions: 38

Compression:

Stored size: 1.27 KB

Contents

module GraphQL
  class Query
    class Executor
      # @return [GraphQL::Query] the query being executed
      attr_reader :query

      def initialize(query)
        @query = query
      end

      # Evalute {operation_name} on {query}.
      # Handle {GraphQL::ExecutionError}s by putting them in the "errors" key.
      # @return [Hash] A GraphQL response, with either a "data" key or an "errors" key
      def result
        execute
      rescue GraphQL::ExecutionError => err
        query.context.errors << err
        {"errors" => [err.to_h]}
      end

      private

      def execute
        operation = query.selected_operation
        return {} if operation.nil?

        op_type = operation.operation_type
        root_type = query.schema.root_type_for_operation(op_type)
        execution_strategy_class = query.schema.execution_strategy_for_operation(op_type)
        execution_strategy = execution_strategy_class.new

        query.context.execution_strategy = execution_strategy
        data_result = execution_strategy.execute(operation, root_type, query)
        result = { "data" => data_result }
        error_result = query.context.errors.map(&:to_h)

        if error_result.any?
          result["errors"] = error_result
        end

        result
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
graphql-1.2.6 lib/graphql/query/executor.rb
graphql-1.2.5 lib/graphql/query/executor.rb
graphql-1.2.4 lib/graphql/query/executor.rb
graphql-1.2.3 lib/graphql/query/executor.rb
graphql-1.2.2 lib/graphql/query/executor.rb
graphql-1.2.1 lib/graphql/query/executor.rb
graphql-1.2.0 lib/graphql/query/executor.rb
graphql-1.1.0 lib/graphql/query/executor.rb
graphql-1.0.0 lib/graphql/query/executor.rb
graphql-0.19.4 lib/graphql/query/executor.rb
graphql-0.19.3 lib/graphql/query/executor.rb
graphql-0.19.2 lib/graphql/query/executor.rb
graphql-0.19.1 lib/graphql/query/executor.rb
graphql-0.19.0 lib/graphql/query/executor.rb
graphql-0.18.15 lib/graphql/query/executor.rb
graphql-0.18.14 lib/graphql/query/executor.rb
graphql-0.18.13 lib/graphql/query/executor.rb
graphql-0.18.12 lib/graphql/query/executor.rb
graphql-0.18.11 lib/graphql/query/executor.rb
graphql-0.18.10 lib/graphql/query/executor.rb