This commit is contained in:
AJ ONeal 2015-09-21 20:14:26 -06:00
джерело 75089a9f54
коміт 3a417440a5

22
README.md Normal file

@ -0,0 +1,22 @@
Master Quest
------------
An ORM for multi-master applications.
It is assumed that relationships are tight and therefore should be prefetched and that data is often added,
but rarely updated (append/log-style over traditional update style).
API
---
* save(data) - creates or updates based on presence of ID
* upsert(id, data) - creates or updates based on existence in DB
* destroy(id) - deletes from DB
* get(id) - grab one by id
* find(attrs, opts) - grab many by indexable attributes
* opts.orderBy
* opts.orderByDesc
maybe?
* where(sql, vals) - WHERE