diff --git a/apollo-ios/Sources/ApolloSQLite/SQLiteDatabase.swift b/apollo-ios/Sources/ApolloSQLite/SQLiteDatabase.swift index 15b0f99a6..fea075890 100644 --- a/apollo-ios/Sources/ApolloSQLite/SQLiteDatabase.swift +++ b/apollo-ios/Sources/ApolloSQLite/SQLiteDatabase.swift @@ -6,6 +6,11 @@ import Apollo public struct DatabaseRow { let cacheKey: CacheKey let storedInfo: String + + public init(cacheKey: CacheKey, storedInfo: String) { + self.cacheKey = cacheKey + self.storedInfo = storedInfo + } } public enum SQLiteError: Error, CustomStringConvertible {