We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Think about properly separating concerns. Should this be a @bluelibs/x2 successor that is comprised of reusable modules based on this core-foundation?
Migrations Behaviors Relational Support + Nova Integration Validation Hook a global event system
register: [ mongo.with({ connections: { main: { uri: "", options: {}, collections: [ usersCollection ], } }, migrations: [], }), ] const usersCollection = resource({ id: "collections.users", dependencies: { mongo }, async init(_, { mongo }) { // mongo.use("other").createCollection("xxx"); return mongo.createCollection("users", { validate: [], behaviors: [], model: {}, links: {}, indexes: [], connection: "main", }) }
task({ on: mongo.events.insertOne, async run(insertOneEvent, {}) { ... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Concept
Think about properly separating concerns. Should this be a @bluelibs/x2 successor that is comprised of reusable modules based on this core-foundation?
Features
Migrations
Behaviors
Relational Support + Nova Integration
Validation
Hook a global event system
The text was updated successfully, but these errors were encountered: