Sha256: a0aa827b7c890b5a6c1b010943dc8164ce879469a5b7410c7342a3d40cfd4591
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 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 errors by putting them in the "errors" key. # (Or, if `query.debug`, by re-raising them.) # @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]} rescue StandardError => err query.context.errors << err query.debug && raise(err) message = "Internal error" # : #{err} \n#{err.backtrace.join("\n ")}" {"errors" => [{"message" => message}]} end private def execute operation = query.selected_operation return {} if operation.nil? op_type = operation.operation_type root_type = query.schema.public_send(op_type) execution_strategy_class = query.schema.public_send("#{op_type}_execution_strategy") 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
graphql-0.14.1 | lib/graphql/query/executor.rb |
graphql-0.14.0 | lib/graphql/query/executor.rb |
graphql-0.13.0 | lib/graphql/query/executor.rb |