You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* orderBy now accepts args
* test for orderby case
* signature for orderBy func
* no reversing of nulls
* [ci skip] rename test
* docs and test simplification
* test desc change
AGE: {value: ['createdAt', 'DESC']}, // The first ENUM value will be the default order. The direction will be used for `first`, will automatically be inversed for `last` lookups.
104
-
TITLE: {value: ['title', 'ASC']}
104
+
TITLE: {value: ['title', 'ASC']},
105
+
CUSTOM: {value: [function (source, args, context, info) {}, 'ASC']} // build and return custom order for sequelize orderBy option
0 commit comments