Anyway I can have the _sum in findMany() or should i use typescript to get the sum? ```ts const bookings = await db.booking.findMany({ select: { courseId: true, totalPersons: true }, }); const sum = await db.booking.aggregate({ _sum: { totalPersons: true, }, }); ```