Adapter / @fjell/lib-sequelize
Relational persistence
Maps a Fjell library to Sequelize models, relational queries, and database behavior.
How to use it
Maps a Fjell library to Sequelize models, relational queries, and database behavior.
Minimal project sample
const users = createSequelizeLibrary(registry, { kta:["user"], scopes:[] }, [UserModel], options);
await users.operations.create({ name:"Ada" });Where it connects
This component participates in the Fjell workflow as a adapter layer. See the complete relationship map and sample application to understand its neighbors.
See architecture → See sample app →