orm
Here are 457 public repositories matching this topic...
A simple Node.js ORM for PostgreSQL, MySQL and SQLite3 built on top of Knex.js
-
Updated
Sep 22, 2020 - JavaScript
what is prefer way to add relation and remove relation? I found example as below, but I did't find any document about the two methods.
case 'ADD_AUTHOR_TO_BOOK':
Book.withId(action.payload.bookId).authors.add(action.payload.author); // add new entity , add relation? this doesn't work.
break;
case 'REMOVE_AUTHOR_FROM_BOOK':
Book.withId(action.payload.bo
Give your data the treatment it deserves with a framework-agnostic, datastore-agnostic JavaScript ORM built for ease of use and peace of mind. Works in Node.js and in the Browser. Main Site: http://js-data.io, API Reference Docs: http://api.js-data.io/js-data
-
Updated
Sep 13, 2020 - JavaScript
Make ORMs great again!
-
Updated
Nov 9, 2020 - JavaScript
DynamoDB data mapper for node.js. Originally forked from https://github.com/ryanfitz/vogels
-
Updated
Sep 6, 2020 - JavaScript
-
Updated
Jun 6, 2020 - JavaScript
A GUI Desktop App for export sequelize models from database automatically.
-
Updated
Nov 12, 2020 - JavaScript
@bajtos suggested to provide strongly typed context types based on the hook name.
For example:
export interface AccessHookContext<T extends typeof PersistedModel> {
Model: T;
query: Filter<T>;
}
export type Listener<Ctx> = (ctx: Ctx, next: (err?: any) => void) => void;
class PersiIt's a hackathon-starter fork, but designed to use PostgreSQL by default (or MySQL)
-
Updated
Dec 29, 2017 - JavaScript
A javascript REST ORM that is offline and real-time capable
-
Updated
Apr 14, 2020 - JavaScript
Cassandra ORM/ODM/OGM for Node.js with optional support for Elassandra & JanusGraph
-
Updated
Oct 8, 2020 - JavaScript
gremlin-orm is an ORM for graph databases in Node.js
-
Updated
Dec 4, 2017 - JavaScript
Feature request:
Select builders are often used in sub query with aliases.
It would be a nice syntax addition if instead of using an object we could output the builder with a alias directly thanks to an as method
//currently
sh.select().from({
as:'foo',
value:sh.select().from('users').where('age','>',42).noop()
});could be written:
sh.seleA Google apps scripts ORM to manipulate spreadsheets as database tables.
-
Updated
Oct 20, 2020 - JavaScript
DevExpress eXpress Persistent Objects (XPO) ORM for .NET Framework / .NET Core / .NET Standard 2.0
-
Updated
Nov 3, 2020 - JavaScript
Javascript library to communicate with RESTful API built following JSON API specification. inspired by Laravel’s Eloquent
-
Updated
Oct 17, 2019 - JavaScript
-
Updated
Dec 1, 2020 - JavaScript
Integration of GraphQL-Tools and Sequelize ORM
-
Updated
Oct 26, 2020 - JavaScript
Model-driven REST or GraphQL backend for CRUD and more, written in Javascript, using Node.js, Express, and PostgreSQL.
-
Updated
Nov 28, 2020 - JavaScript
Improve this page
Add a description, image, and links to the orm topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the orm topic, visit your repo's landing page and select "manage topics."


Issue Description
While using model.bulkCreate, as we pass the options, an object which contains transaction, it comes modified after the execution
What are you doing?
We have called bulk