My use case is that I have a bunch of data types with publicly visible privacy rules on them where I’ve aimed to speed up development by building first, then returning the restrict them - probably not the right approach!

In a few of my tables design I’ve included a text data type containing the email address of the person who should only be able to see said record.

In my clientside elements such as repeating groups, I’ve always ensured “do a search for” contains constraints that limit the data the user can see - my lookups almost always contain a constraint for user = current user’s email.

For some extra protection I want to retrospectively go over my data types so that server side it will never return another customers data.

For example, if I made a mistake in one of my “do a search for” for forgot to add the correct constraint, I want to always ensure customer X can only see customer X’s records - so it’s blocked server side if said mistake was made.

Bit of peace of mind really, hopefully that’s the correct approach - I’m still fairly new to bubble.