I have a Users collection with auth enabled (with verify). I want to allow access to the username field ONLY to the public. The rest is admin-only.
Right now, I've had to define the collection read access to anyone, and go through every single field except username to add a field-level restriction to restrict access.
Also, I can't restrict access to fields I don't have access to, like _verifyToken or _verify or some other values I might not be aware of.
Is there a better way?