case insensitive orderBy

I want to do an
orderBy
that is case insensitive. How do I do it?
Solution
Hello, @vr7bd. I think you can try smth like this:

 .orderBy(sql`lower(${<YOUR_COLUMN>})`)
Was this page helpful?