We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3600d7a commit e85869dCopy full SHA for e85869d
Sources/ApolloSQLite/SQLiteDatabase.swift
@@ -6,6 +6,11 @@ import Apollo
6
public struct DatabaseRow {
7
let cacheKey: CacheKey
8
let storedInfo: String
9
+
10
+ public init(cacheKey: CacheKey, storedInfo: String) {
11
+ self.cacheKey = cacheKey
12
+ self.storedInfo = storedInfo
13
+ }
14
}
15
16
public enum SQLiteError: Error, CustomStringConvertible {
0 commit comments