Persisting Data

Is it common to use the Monday storage api exposed by the sdk as the only data persistence mechanism for an app?

As far as I understand this would allow for seamless authentication, which is great, but having a key value “database” solution that I’d have effectively zero visibility into doesn’t seem practical for a production/commercialized app unless the storage needs are super simple.

If it is common, are people just using stringify’d JSON objects to store data with some sort of clever key naming scheme to keep data organized and unique?

Hey @bradfoster take a look at this discussion about SecureStorage – it’s regarding monday-code, but is similar.

We’re storing as JSON objects or stringified JSON objects.

1 Like

Thanks David! Very insightful exchange - definitely relevant to the questions I’m pondering

1 Like