const qb = db.query.event.findMany({
with: {
workoutSession: {
where: eq(workoutSession.athleteId, userId),
with: {
workoutResult: {
with: {
workout: true,
},
},
},
},
},
})
const qb = db.query.event.findMany({
with: {
workoutSession: {
where: eq(workoutSession.athleteId, userId),
with: {
workoutResult: {
with: {
workout: true,
},
},
},
},
},
})