I have implement the following query in adonisjs v4 :
const services = await Service
.query()
.with('categories')
.orderBy('categories.id', 'desc')
.fetch()
It's work fine.
how to i implement the relation column order_by in adonis v5 preload().