-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Sequelize as base repository from loopback4-sequelize
package
#118
Labels
Comments
shubhamp-sf
added a commit
that referenced
this issue
Jan 18, 2023
adds `sequelizeSoftCrud` function providing soft-delete capabilities with sequelize as underlying repository adds `sequelizeUserModifyCrudRepository` function providing `DefaultUserModifyCrudRepository` (from `@sourceloop/core`) like capabilities with sequelize as underlying repository GH-118
7 tasks
shubhamp-sf
added a commit
that referenced
this issue
Jan 19, 2023
adds `sequelizeSoftCrud` function providing soft-delete capabilities with sequelize as underlying repository adds `sequelizeUserModifyCrudRepository` function providing `DefaultUserModifyCrudRepository` (from `@sourceloop/core`) like capabilities with sequelize as underlying repository GH-118
shubhamp-sf
added a commit
that referenced
this issue
Jan 19, 2023
Export `sequelizeSoftCrud` function providing soft-delete capabilities with sequelize as underlying repository Export `sequelizeUserModifyCrudRepository` function providing `DefaultUserModifyCrudRepository` (from `@sourceloop/core`) like capabilities with sequelize as underlying repository GH-118
shubhamp-sf
added a commit
that referenced
this issue
Feb 28, 2023
Export `SequelizeSoftCrudRepository` providing soft-delete capabilities with sequelize as underlying repository GH-118
shubhamp-sf
added a commit
that referenced
this issue
Feb 28, 2023
Export `SequelizeSoftCrudRepository` providing soft-delete capabilities with sequelize as underlying repository GH-118
shubhamp-sf
added a commit
that referenced
this issue
Feb 28, 2023
Export `SequelizeSoftCrudRepository` providing soft-delete capabilities with sequelize as underlying repository GH-118
yeshamavani
pushed a commit
that referenced
this issue
Feb 28, 2023
Export `SequelizeSoftCrudRepository` providing soft-delete capabilities with sequelize as underlying repository GH-118
🎉 This issue has been resolved in version 7.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
Potential projects utilizing loopback4-sequelize package won't be able to use soft-delete capabilities as for now, because the base here is
DefaultCrudRepository
which needs to be changed.Solution
SoftCrudRepository
(fromloopback4-soft-delete
) but with utilizing sequelize capabilities.DefaultUserModifyCrudRepository
(from@sourceloop/core
package) but with utilizing sequelize capabilities.Alternatives
Solution no. 2 can be also implemented in
@sourceloop/core
repository.The text was updated successfully, but these errors were encountered: