@@ -24,6 +24,7 @@ LinkedQL extends the SQL language to bring in useful syntax shorthands for relat
2424| ** Feature** | ** Summary** | ** Docs** |
2525| :---------------- | :--------------------------------------------------------------------- | :--------------------------------------------------- |
2626| ** DeepRefs** | Follow foreign key relationships directly using simple arrow notation. | [ DeepRefs] ( /capabilities/deeprefs ) |
27+ | ** Structured Writes** | Express relationship-aware writes directly in SQL-shaped DML. | [ Structured Writes] ( /capabilities/structured-writes ) |
2728| ** JSON Literals** | Model JSON objects and arrays using literal JSON syntax. | [ JSON] ( /capabilities/json-literals ) |
2829| ** UPSERT** | Perform the classic ` INSERT...ON CONFLICT ` statement in a single step. | [ UPSERT] ( /capabilities/upsert ) |
2930
@@ -87,7 +88,9 @@ LinkedQL extends the query execution layer with reactivity and automatic schema
8788| ** Feature** | ** Summary** | ** Docs** |
8889| :------------------ | :--------------------------------------------------------------------- | :--------------------------------------------------------- |
8990| ** Live Queries** | Turn on reactivity over any query and get back a live view of your data. | [ Live Queries] ( /capabilities/live-queries ) |
90- | ** Timeline Engine** | Anchor a query to a fixed schema version for stable results over time. | * (Coming soon)* |
91+ | ** Streaming** | Lazily iterate large result sets instead of materializing them all at once. | [ Streaming] ( /capabilities/streaming ) |
92+ | ** Changefeeds (WAL)** | Subscribe to structured table-level commits and row mutations. | [ Changefeeds] ( /capabilities/changefeeds ) |
93+ | ** Version Binding** | Anchor a query to explicit relation versions for stable schema contracts. | [ Version Binding] ( /capabilities/version-binding ) |
9194
9295### Examples
9396
@@ -145,8 +148,8 @@ LinkedQL bundles an embeddable SQL engine, **FlashQL**, that brings its full cap
145148| ** Capability** | ** Summary** | ** Docs** |
146149| :----------------- | :------------------------------------------------------------ | :----------------------------------- |
147150| ** Local Database** | Run a full SQL engine in memory — same semantics, zero setup. | [ FlashQL] ( /flashql ) |
148- | ** Federation** | Query local and remote data together in a single SQL surface. | [ FlashQL ] ( /flashql ) |
149- | ** Sync** | Keep local and remote tables automatically synchronized. | [ FlashQL] ( /flashql ) |
151+ | ** Federation** | Query local and remote data together in a single SQL surface. | [ Federation & Sync ] ( /flashql/foreign-io ) |
152+ | ** Sync** | Keep local and remote tables automatically synchronized. | [ FlashQL Sync ] ( /flashql/sync ) |
150153
151154### Examples
152155
@@ -196,4 +199,3 @@ client.on('sync:change', e => console.log('Δ', e.table, e.type));
196199```
197200
198201:::
199-
0 commit comments