Embarking on my first Single Page Application (SPA) journey.
This SPA will serve as an HTML representation of our database structure for clients to browse through the model and run queries, without accessing the actual database content.
The challenge lies in making this SPA update-proof, as it will be static and shipped offline. Currently, it exists as a static HTML page.
My main query is whether it's possible to use breeze to query the JSON file I've crafted to describe the model. Most resources I've come across show EntityManager being set up with a service URL that fetches the data, which doesn't align with my setup.