|
|
|
|
|
by eevo
1089 days ago
|
|
Doesn't seem like it performs result set nesting on joins? For example with the one to many of owner -> pet, I'd like the results to look something like `{ person: Person, pets: Pet[] }[]`. Knex doesn't do this either (afaict) - wrote a few "deep" queries with some convoluted lodash to group things up but mostly gave up and just live with raw resultsets. I guess I still prefer that to a full on ORM, but that's really the one missing feature I want from these SQL query builder libraries |
|