profile
西村 祐真
@variant3a
Objection.jsでjson columnをorderbyする方法
calendar_today
2023-12-04
insights
views: 168
thumbnail images

Objection.jsとは

nodejsで動作するknexベースのORM。LaravelのEloquent ORMに似ている。

詳細(Document): https://vincit.github.io/objection.js/

方法

現状では、Objection.jsではmysqlのjsonのサポートが薄く、orderByRaw()を使用するしかないらしい。

return await Post.query().orderByRaw('json->"$.view" desc')
calendar_today
2023-12-04
insights
views: 168