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