Hi, I am just trying things.
We have generic pages, those pages sometimes have specific content (but mostly generic). Based on certain criteria we filter out that content.
interface Page {
content: Sections[]
}
We are going to use the local api to fetch the data. Is it possible to just throw in a "user"(so a user that doesn't really exists) with the criteria we want to filter the content on. So that the access control basicly doesn't return that data?
We do use access control for really access control too. So I would have to build something that chooses which access control to use.