Предварительная загрузка модели Adonis с условием
const users = await User
.query()
.preload('profile', (profileQuery) => {
profileQuery.where('isActive', true)
})
GutoTrosla