Skip to content

Commit 1164591

Browse files
committed
Edit README
1 parent 6db4417 commit 1164591

40 files changed

+3761
-164
lines changed

README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Linked QL is a small JS-based database abstraction library that is usable over y
3333

3434
<div align="center">
3535

36-
[Docs](https://github.com/linked-db/linked-ql/wiki)[Examples](https://github.com/linked-db/linked-ql/wiki/Examples)[CLI](https://github.com/linked-db/linked-ql/wiki/CLI)[API](https://github.com/linked-db/linked-ql/wiki/API)[Migration](https://github.com/linked-db/linked-ql/wiki/Migration)
36+
[LANG](https://github.com/linked-db/linked-ql/wiki/LANG)[API](https://github.com/linked-db/linked-ql/wiki/API)[CLI](https://github.com/linked-db/linked-ql/wiki/CLI)
3737

3838
</div>
3939

@@ -146,7 +146,7 @@ console.log(result);
146146
<tr><td>
147147
<details _name="features"><summary>Progressive enhancement</summary>
148148

149-
While the typical ORM often imposes a high level of abstraction where that's not desired, Linked QL offers a <ins>SQL-by-default, progressive enhancement</ins> workflow that lets you think from the ground up! And at whatever part of that spectrum you find a sweet spot, you also get the same powerful set of features that Linked QL has to offer! *(See ➞ [Examples](https://github.com/linked-db/linked-ql/wiki/Examples))*
149+
While the typical ORM often imposes a high level of abstraction where that's not desired, Linked QL offers a <ins>SQL-by-default, progressive enhancement</ins> workflow that lets you think from the ground up! And at whatever part of that spectrum you find a sweet spot, you also get the same powerful set of features that Linked QL has to offer! *(See ➞ [Examples](https://github.com/linked-db/linked-ql/wiki/LANG))*
150150

151151
##### *Preview:*
152152

@@ -269,7 +269,7 @@ console.log(savepoint.jsonfy());
269269
270270
```js
271271
// SQL preview
272-
console.log(savepoint.restorePreview());
272+
console.log(savepoint.reverseSQL());
273273
// "DROP TABLE public.users CASCADE"
274274
```
275275

@@ -286,7 +286,7 @@ await savepoint.rollback({
286286
<tr><td>
287287
<details _name="features"><summary>Diff-based migration</summary>
288288

289-
Whereas schema evolution remains a drag across the board, it comes as a particularly nifty experience in Linked QL! As against the conventional script-based migrations approach, Linked QL follows a diff-based approach that lets you manage your entire DB structure <ins>declaratively</ins> out of a single `schema.json` (or `schema.yml`) file! *(See ➞ [Migration](https://github.com/linked-db/linked-ql/wiki/Migration))*
289+
Whereas schema evolution remains a drag across the board, it comes as a particularly nifty experience in Linked QL! As against the conventional script-based migrations approach, Linked QL follows a diff-based approach that lets you manage your entire DB structure <ins>declaratively</ins> out of a single `schema.json` (or `schema.yml`) file! *(See ➞ [Migrations](https://github.com/linked-db/linked-ql/wiki/Migrations))*
290290

291291
##### *Preview:*
292292

@@ -454,7 +454,10 @@ All `client` instances above implement the same [interface](https://github.com/l
454454

455455
<div align="center">
456456

457-
[Docs](https://github.com/linked-db/linked-ql/wiki)[Examples](https://github.com/linked-db/linked-ql/wiki/Examples)[CLI](https://github.com/linked-db/linked-ql/wiki/CLI)[API](https://github.com/linked-db/linked-ql/wiki/API)[Migration](https://github.com/linked-db/linked-ql/wiki/Migration)
457+
[LANG](https://github.com/linked-db/linked-ql/wiki/LANG)[API](https://github.com/linked-db/linked-ql/wiki/API)[CLI](https://github.com/linked-db/linked-ql/wiki/CLI)
458+
459+
460+
[SELECT](https://github.com/linked-db/linked-ql/wiki/SELECT)[INSERT](https://github.com/linked-db/linked-ql/wiki/INSERT)[UPSERT](https://github.com/linked-db/linked-ql/wiki/UPSERT)[UPDATE](https://github.com/linked-db/linked-ql/wiki/UPDATE)[DELETE](https://github.com/linked-db/linked-ql/wiki/DELETE)[CREATE](https://github.com/linked-db/linked-ql/wiki/CREATE)[RENAME](https://github.com/linked-db/linked-ql/wiki/RENAME)[ALTER](https://github.com/linked-db/linked-ql/wiki/ALTER)[DROP](https://github.com/linked-db/linked-ql/wiki/DROP)
458461

459462
---------------------------------
460463

0 commit comments

Comments
 (0)