Sha256: 47e1746b03c932cbd0ba5059f7501f161b256b10b9bbe76c14ef3123a56f9731

Contents?: true

Size: 1.41 KB

Versions: 7

Compression:

Stored size: 1.41 KB

Contents

module GraphQL
  class Query
    class SerialExecution
      # This is the only required method for an Execution strategy.
      # You could create a custom execution strategy and configure your schema to
      # use that custom strategy instead.
      #
      # @param ast_operation [GraphQL::Language::Nodes::OperationDefinition] The operation definition to run
      # @param root_type [GraphQL::ObjectType] either the query type or the mutation type
      # @param query_obj [GraphQL::Query] the query object for this execution
      # @return [Hash] a spec-compliant GraphQL result, as a hash
      def execute(ast_operation, root_type, query_object)
        irep_root = query_object.internal_representation[ast_operation.name]

        operation_resolution.new(
          irep_root,
          root_type,
          ExecutionContext.new(query_object, self)
        ).result
      end

      def field_resolution
        self.class::FieldResolution
      end

      def operation_resolution
        self.class::OperationResolution
      end

      def selection_resolution
        self.class::SelectionResolution
      end
    end
  end
end

require "graphql/query/serial_execution/execution_context"
require "graphql/query/serial_execution/value_resolution"
require "graphql/query/serial_execution/field_resolution"
require "graphql/query/serial_execution/operation_resolution"
require "graphql/query/serial_execution/selection_resolution"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
graphql-0.18.1 lib/graphql/query/serial_execution.rb
graphql-0.18.0 lib/graphql/query/serial_execution.rb
graphql-0.17.2 lib/graphql/query/serial_execution.rb
graphql-0.17.1 lib/graphql/query/serial_execution.rb
graphql-0.17.0 lib/graphql/query/serial_execution.rb
graphql-0.16.1 lib/graphql/query/serial_execution.rb
graphql-0.16.0 lib/graphql/query/serial_execution.rb