You can restrict users to read only documents where a specific field is set to true by using a query constraint in the read access control function. For example, if you have a checkbox field named isPublic, you can return a query constraint like this: const canReadPage = ({ req: { user } }) =>… Continue reading How can you restrict users to only read posts where a specific field is set to true using the read access control function?