I have an iOS application that uses the Core Data framework. I'm migrating the application from Objective-C/Swift to TypeScript + React Native. My Core Data configuration uses SQLite as a backend.
The application has an existing user base who may be (quite understandably) frustrated if they lose access to all the data they have in the current version, so if possible, I'd like to mitigate this possibility.
I recognize that I can access an SQLite database in TypeScript/React Native, so I think I might be able to work with the existing databases/schema; I'll just need to know exactly how to do so.