Maybe a good idea to try https://vincit.github.io/objection.js/ 🤔
It actually looks pretty awesome. Querying things is always great :)
const middleAgedJennifers = await Person.query()
.select('age', 'firstName', 'lastName')
.where('age', '>', 40)
.where('age', '<', 60)
.where('firstName', 'Jennifer')
.orderBy('lastName');
Love it! 😎
Please sign in to leave a comment.