Skip to content

Commit

Permalink
Add missing initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
filipealva committed Oct 27, 2024
1 parent cc832e1 commit 9b123c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sources/Apollo/GraphQLSelectionSetMapper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ public final class GraphQLSelectionSetMapper<T: SelectionSet>: GraphQLResultAccu

let dataDictMapper: DataDictMapper

public init(dataDictMapper: DataDictMapper) {
self.dataDictMapper = dataDictMapper
}

public var requiresCacheKeyComputation: Bool {
dataDictMapper.requiresCacheKeyComputation
}
Expand Down

0 comments on commit 9b123c1

Please sign in to comment.