Fixes https://github.com/twentyhq/twenty/issues/18587 "Load More" in grouped record table view (aggregated view) which was broken — clicking it loaded no records and made the button disappear Root cause: the Load More button called fetchMore on a useLazyQuery that was never executed, causing Apollo to throw Invariant Violation: 'fetchMore' cannot be called before executing the query. The component now uses fetchMoreRecords from the same useQuery that powers the table data. Before https://github.com/user-attachments/assets/5266424b-7f35-4261-b7b7-9f7bc3eb8ad6 After https://github.com/user-attachments/assets/866fe7d7-720a-40c7-bb28-267b85bd98d5 --------- Co-authored-by: Charles Bochet <charles@twenty.com>