Skip to content

Commit 00d36c8

Browse files
committed
Fix broken README links
1 parent 3d6670f commit 00d36c8

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ For PostgreSQL, MySQL, and MariaDB, it adapts seamlessly to each database throug
7878

7979
| **Dialect** | **Package** | **Docs** |
8080
| :------------------ | :----------------------------- | :----------------------------------------------------------------------------------------- |
81-
| PostgreSQL | `@linked-db/linked-ql/pg` | [Read → PG Docs](docs/entry/clients#11--postgresql) |
82-
| MySQL | `@linked-db/linked-ql/mysql` | [Read → MySQL Docs](docs/entry/clients#12--mysql) |
83-
| MariaDB | `@linked-db/linked-ql/mariadb` | [Read → MariaDB Docs](docs/entry/clients#13--mariadb) |
84-
| FlashQL (In-Memory) | `@linked-db/linked-ql/flash` | [Read → FlashQL Docs](docs/entry/clients#14--flashql) |
81+
| PostgreSQL | `@linked-db/linked-ql/pg` | [Read → PG Docs](https://linked-db.github.io/linked-ql/entry/clients#11--postgresql) |
82+
| MySQL | `@linked-db/linked-ql/mysql` | [Read → MySQL Docs](https://linked-db.github.io/linked-ql/entry/clients#12--mysql) |
83+
| MariaDB | `@linked-db/linked-ql/mariadb` | [Read → MariaDB Docs](https://linked-db.github.io/linked-ql/entry/clients#13--mariadb) |
84+
| FlashQL (In-Memory) | `@linked-db/linked-ql/flash` | [Read → FlashQL Docs](https://linked-db.github.io/linked-ql/entry/clients#14--flashql) |
8585

8686
---
8787

@@ -121,9 +121,9 @@ LinkedQL automatically compiles your query down to the SQL your database underst
121121

122122
| **Feature** | **Summary** | **Docs** |
123123
| :---------------- | :------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------- |
124-
| **DeepRefs** | Follow relationships using simple arrow notation (`a ~> b ~> c`). | [Read → DeepRefs Docs](docs/lang/deeprefs) |
125-
| **JSON Literals** | Model JSON shapes directly in SQL using JSON literals (`{}`, `[]`). | [Read → JSON Docs](docs/lang/json-Literals) |
126-
| **UPSERTS** | Perform insert-or-update operations with a literal `UPSERT` statement. | [Read → UPSERTS Docs](docs/lang/upsert) |
124+
| **DeepRefs** | Follow relationships using simple arrow notation (`a ~> b ~> c`). | [Read → DeepRefs Docs](https://linked-db.github.io/linked-ql/lang/deeprefs) |
125+
| **JSON Literals** | Model JSON shapes directly in SQL using JSON literals (`{}`, `[]`). | [Read → JSON Docs](https://linked-db.github.io/linked-ql/lang/json-Literals) |
126+
| **UPSERTS** | Perform insert-or-update operations with a literal `UPSERT` statement. | [Read → UPSERTS Docs](https://linked-db.github.io/linked-ql/lang/upsert) |
127127

128128
### Examples
129129

@@ -194,7 +194,7 @@ Modern apps and modern workflows — solved.
194194

195195
| **Feature** | **Summary** | **Docs** |
196196
| :------------------ | :-------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------- |
197-
| **Realtime SQL** | Run live, self-updating queries right on your database. | [Read → RealtimeSQL Docs](docs/proc/realtime-sql) |
197+
| **Realtime SQL** | Run live, self-updating queries right on your database. | [Read → RealtimeSQL Docs](https://linked-db.github.io/linked-ql/proc/realtime-sql) |
198198
| **Timeline Engine** | Get automatic database versioning on every DDL operation; bind queries to specific schema versions. | *(Coming soon)* |
199199

200200
### Examples
@@ -271,9 +271,9 @@ It extends that with built-in support for **federation**, **materialization**, a
271271

272272
| **Capability** | **Summary** | **Docs** |
273273
| :------------------ | :----------------------------------------------------------- | :------------------------------------------------------------------------- |
274-
| **Federation** | Query across remote and local databases as a single surface. | [Read → FlashQL Docs](docs/flash#221-query-federation) |
275-
| **Materialization** | Materialize remote datasets locally for offline queries. | [Read → FlashQL Docs](docs/flash#222-data-materialization) |
276-
| **Sync** | Two-way synchronization between local and remote databases. | [Read → FlashQL Docs](docs/flash#223-data-sync) |
274+
| **Federation** | Query across remote and local databases as a single surface. | [Read → FlashQL Docs](https://linked-db.github.io/linked-ql/flash#221-query-federation) |
275+
| **Materialization** | Materialize remote datasets locally for offline queries. | [Read → FlashQL Docs](https://linked-db.github.io/linked-ql/flash#222-data-materialization) |
276+
| **Sync** | Two-way synchronization between local and remote databases. | [Read → FlashQL Docs](https://linked-db.github.io/linked-ql/flash#223-data-sync) |
277277

278278
### Examples
279279

@@ -354,11 +354,11 @@ client.on('sync:change', e => console.log('Δ', e.table, e.type));
354354

355355
| Feature | Description | Wiki Page |
356356
| :---------------- | :----------------------------------------------------------- | :--------------------------------------------------------------------------- |
357-
| **DeepRefs** | Declarative relationship traversal across foreign keys. | [DeepRefs →](docs/lang/deeprefs) |
358-
| **JSON Literals** | Inline JSON modeling syntax — objects, arrays, aggregations. | [JSON Literals →](docs/lang/json-Literals) |
359-
| **UPSERTS** | Simplified `INSERT + UPDATE` hybrid statement. | [UPSERTS →](docs/lang/upsert) |
360-
| **RealtimeSQL** | Live queries powered by the Realtime Engine. | [RealtimeSQL →](docs/proc/realtime-sql) |
361-
| **FlashQL** | In-memory SQL runtime for offline, edge, and hybrid apps. | [FlashQL →](docs/flash) |
357+
| **DeepRefs** | Declarative relationship traversal across foreign keys. | [DeepRefs →](https://linked-db.github.io/linked-ql/lang/deeprefs) |
358+
| **JSON Literals** | Inline JSON modeling syntax — objects, arrays, aggregations. | [JSON Literals →](https://linked-db.github.io/linked-ql/lang/json-Literals) |
359+
| **UPSERTS** | Simplified `INSERT + UPDATE` hybrid statement. | [UPSERTS →](https://linked-db.github.io/linked-ql/lang/upsert) |
360+
| **RealtimeSQL** | Live queries powered by the Realtime Engine. | [RealtimeSQL →](https://linked-db.github.io/linked-ql/proc/realtime-sql) |
361+
| **FlashQL** | In-memory SQL runtime for offline, edge, and hybrid apps. | [FlashQL →](https://linked-db.github.io/linked-ql/flash) |
362362

363363
---
364364

docs/flash/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ Capabilities inherited from LinkedQL includes:
190190

191191
| Capability | Description | |
192192
| :-------------------- | :---------------------------------------------- |:--|
193-
| **DeepRefs (~>)** | Declarative foreign-key dereferencing syntax. | [_reference_](lang/deeprefs) |
194-
| **JSON Literals** | Inline object and array literals. | [_reference_](lang/json-Literals) |
195-
| **UPSERT Semantics** | Dedicated `UPSERT` statement. | [_reference_](lang/upsert) |
193+
| **DeepRefs (~>)** | Declarative foreign-key dereferencing syntax. | [_reference_](/linked-ql/lang/deeprefs) |
194+
| **JSON Literals** | Inline object and array literals. | [_reference_](/linked-ql/lang/json-Literals) |
195+
| **UPSERT Semantics** | Dedicated `UPSERT` statement. | [_reference_](/linked-ql/lang/upsert) |
196196
| **Versioned Queries** | Access versioned schemas using `@version`. | |
197197

198198
```sql
@@ -213,7 +213,7 @@ Capabilities inherited from LinkedQL includes:
213213

214214
| Capability | Description | |
215215
| :-------------------- | :---------------------------------------------- |:--|
216-
| **Live Queries** | LinkedQL's Live Queries capability. | [_reference_](proc/realtime-sql) |
216+
| **Live Queries** | LinkedQL's Live Queries capability. | [_reference_](/linked-ql/proc/realtime-sql) |
217217
| **Database Versioning** | LinkedQL's versioning system. | |
218218

219219
### `2.2 |` Data Orchestration & Mirroring

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ layout: home
1010

1111
Explore the layers of the LinkedQL system:
1212

13-
+ [Entry (`entry`)](entry) — the external interface and dialect clients.
14-
+ [FlashQL (`flash`)](flash) — the embedded engine.
15-
+ [Language (`lang`)](lang/) — the compiler and syntax layer.
16-
+ [Processing (`proc`)](proc) — the runtime and reactivity core.
13+
+ [Entry (`entry`)](/linked-ql/entry) — the external interface and dialect clients.
14+
+ [FlashQL (`flash`)](/linked-ql/flash) — the embedded engine.
15+
+ [Language (`lang`)](/linked-ql/lang) — the compiler and syntax layer.
16+
+ [Processing (`proc`)](/linked-ql/proc) — the runtime and reactivity core.

docs/lang/deeprefs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ LEFT JOIN (SELECT author, title FROM posts) AS p
217217
GROUP BY u.id;
218218
```
219219

220-
Alternatively, you can use the [declarative aggregation syntax](lang/json-Literals#-2--aggregation-syntax): `AS col[]`.<br>
220+
Alternatively, you can use the [declarative aggregation syntax](/linked-ql/lang/json-Literals#-2--aggregation-syntax): `AS col[]`.<br>
221221
This performs aggregation **within** the BackRef’s inner scope rather than the outer query, isolating the grouping semantics to that subrelation.
222222

223223
```sql
@@ -603,7 +603,7 @@ Each row from the source query becomes one complete relational structure and exe
603603

604604
### `3.5 |` Upserts
605605

606-
DeepRefs are fully supported in [UPSERT](lang/upsert) operations — being just a variation of the `INSERT` statement.
606+
DeepRefs are fully supported in [UPSERT](/linked-ql/lang/upsert) operations — being just a variation of the `INSERT` statement.
607607

608608
```sql
609609
UPSERT INTO posts

docs/lang/json-literals.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ LinkedQL’s aggregation syntax doesn’t alter SQL’s grouping rules.
174174

175175
It simplifies **expression**, not semantics.
176176

177-
An exception to this rule appears in [DeepRefs](lang/deeprefs#112-backrefs-) — where the aggregation syntax isolates its own grouping semantics from the main query.
177+
An exception to this rule appears in [DeepRefs](/linked-ql/lang/deeprefs#112-backrefs-) — where the aggregation syntax isolates its own grouping semantics from the main query.
178178

179179
---
180180

@@ -200,7 +200,7 @@ FROM users;
200200

201201
### `3.2 |` DeepRefs
202202

203-
JSON literals compose with [DeepRefs](lang/deeprefs) to model relationships structurally.
203+
JSON literals compose with [DeepRefs](/linked-ql/lang/deeprefs) to model relationships structurally.
204204

205205
```sql
206206
SELECT

docs/proc/realtime-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ result.abort();
6767
That ends reactivity; the array stops updating.
6868

6969
> [!TIP]
70-
> To run live queries on PostgreSQL, MySQL, MariaDB be sure to follow the [setup instructions](entry/clients) for the database.
70+
> To run live queries on PostgreSQL, MySQL, MariaDB be sure to follow the [setup instructions](/linked-ql/entry/clients) for the database.
7171
7272
---
7373

0 commit comments

Comments
 (0)