and_(
Match.date >= today,
Match.date < next_day,
)
).options(
joinedload(Match.stats_match),
joinedload(Match.stats_first_half),
joinedload(Match.stats_second_half),
joinedload(Match.events),
).offset(10).limit(10)
Можно ли указать лимит по загрузке в joinedload?
.exe
Казалось бы как одно связано с другим
Обсуждают сегодня