getTableQuery and I return a union of two tables for the relation manager (two different types of orders for the OrdersRelationManager - I want them all in one place). The query works fine and shows the union properly return $cateringOrders->union($externalOrders); $externalOrders. No matter what I do, it only returns the record for the first record of $externalOrders.Edit. If I switch the union and use return $externalOrders->union($cateringOrders); I get the same issue, but with the catering orders in this case.