bookshelf icon indicating copy to clipboard operation
bookshelf copied to clipboard

A simple Node.js ORM for PostgreSQL, MySQL and SQLite3 built on top of Knex.js

Results 108 bookshelf issues
Sort by recently updated
recently updated
newest added

Hey, first of all: great ORM! Tried many others, sticked with bookshelf! I'm currently working on a bigger project using bookshelf and came across some problems with the collections. I'm...

feature

* Related Issues: #458 * Previous PRs: #1983 ## Introduction This is a fix for the break in the proper naming-convention that happens when using database schema's in bookshelf. ##...

## Introduction Using withRelated in a query for a related table that has a JSON column causes a "could not identify an equality operator for type json" error to be...

bug
PR please
relations

Hi, the last version of bookshelf was in June 2020, the last commit to `master` is more than a year ago, the freenode #bookshelf seems dead (#2114), in the PRs...

* Related Issues: [#2106](https://github.com/bookshelf/bookshelf/issues/2106) ## Introduction This is a simple update to the latest version of Knex

* Related Issues: _#IssueNumber if necessary_ ## Introduction I did a `yarn add knex`, followed by `yarn add bookshelf`, and got this warning message: ``` [email protected]" has incorrect peer dependency...

* Related Issues: #1299, #1771 ## Introduction Related models are empty objects instead of null when not found. ## Issue Description This problem still persists in `1.0.0`, `1.0.1` e `1.1.0`,...

bug

## Introduction The `options` object is passed a bit everywhere and isn't passed to relations. By passing the options object into relations, this opens countless possibilities, such as filtering data...

I use typescript v. 4.5.3, node.js v 14.17.4 and bookshelf + postgres I have this code: export async function getTransactions(userId: number, page: number): Promise { try { let transactions =...