// Lazy Eager Loading const user = await User.find(1) await user.load('posts')
const users = await User .query() .preload('profile', (profileQuery) => { profileQuery.where('isActive', true) })