Memory Issues: What Data is Loaded when a Page Element has a Type?

After hours of debugging, and testing to remove elements one after the other to understand which one was making my page crash.

I found out I had a RG with “ignore empty constraints” checked.
Because this loads all the data if a constraint evaluates to null, all items will be returned, so if you’ve got like 100 000 items it’s going to use a lot of resources and then crash.

Thanks for pointing me in the right direction :stuck_out_tongue: