I’m building a behaviour‑first financial app where each household needs its own private space. I don’t want users seeing each other’s data, and I don’t want to rely on per‑screen filters that can be bypassed. I need to understand the correct, secure way to structure my tables and relations so that each household has its own isolated dataset.
What is the recommended Glide architecture for:
- creating a Household table
- assigning users to a household
- ensuring all expenses, categories, and settings belong to that household
- filtering every screen and relation by Household ID
- preventing cross‑household visibility
I want to make sure I’m following Glide best practices for multi‑user privacy and row‑level isolation.