feathers-sequelize icon indicating copy to clipboard operation
feathers-sequelize copied to clipboard

A Feathers service adapter for the Sequelize ORM. Supporting MySQL, MariaDB, Postgres, SQLite, and SQL Server

Results 41 feathers-sequelize issues
Sort by recently updated
recently updated
newest added

This PR does 4 things: - perf: `paramsToAdapter`: if `id` is not null, add `id` to the query intelligently. - if `query[this.id] === id` we can skip adding the id...

### Summary When we use the find method of a service that extends SequelizeService the return type is not like expected. We got an union of paginated type and not...

### Steps to reproduce - Create a feathers service - Implement the find method of a service without adding the field paginated inside the parameters - Check the return type...

Here is an example to enhance $include for [email protected] ```js export class MyService extends SequelizeService { /** * abstract function for defind associations * @param {*} model current model *...

Hey, Just experienced a breaking change when updating to latest feathers-sequelize so thought it might be helpful if ever other people encounter this bug :) ### Steps to reproduce remove...

We should be cautious of any methods that do get/find AFTER modification. This can cause issues when using `paranoid` models. Sequelize's `paranoid` option automatically adds `WHERE deleatedAt IS NULL` to...