Sha256: ffbda458d543007935137e595d7d8988d03bee09db47f630d99ca2d25f1f3271

Contents?: true

Size: 464 Bytes

Versions: 6

Compression:

Stored size: 464 Bytes

Contents

module GraphQL
  class Query
    class BaseExecution
      class SelectedObjectResolution
        attr_reader :ast_node, :parent_type, :target, :query, :execution_strategy
        def initialize(ast_node, parent_type, target, query, execution_strategy)
          @ast_node = ast_node
          @parent_type = parent_type
          @target = target
          @query = query
          @execution_strategy = execution_strategy
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
graphql-0.9.3 lib/graphql/query/base_execution/selected_object_resolution.rb
graphql-0.9.2 lib/graphql/query/base_execution/selected_object_resolution.rb
graphql-0.8.1 lib/graphql/query/base_execution/selected_object_resolution.rb
graphql-0.8.0 lib/graphql/query/base_execution/selected_object_resolution.rb
graphql-0.7.1 lib/graphql/query/base_execution/selected_object_resolution.rb
graphql-0.7.0 lib/graphql/query/base_execution/selected_object_resolution.rb