Jonathan_Gibson
1 month agoQrew Cadet
Identifying differences in a copy app?
As a solo developer often tasked with taking over ongoing projects in various stages of completion with either poor documentation or none at all, I spend a lot of time comparing copy apps with their ...
- 1 month ago
Quickbase does not have a built-in tool to automatically show the differences between an original app and its copy. The best practical way is to use API_GetSchema (or export the app as a Solution) on both apps to pull their structure, then compare the exported files using a text/JSON diff tool like VS Code or Beyond Compare. This gives you a list of what’s been added, changed, or deleted. You can also do manual checks table-by-table, but the API method is much faster for medium to large apps.