From 1a90166488dbb05645bdf0ea7986cdf40dd0d506 Mon Sep 17 00:00:00 2001 From: Steven McCanne Date: Mon, 17 Nov 2025 16:31:57 -0800 Subject: [PATCH] in book docs add link for first mention of query in SuperSQL intro --- book/src/super-sql/intro.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/book/src/super-sql/intro.md b/book/src/super-sql/intro.md index b96142617..c4089cba8 100644 --- a/book/src/super-sql/intro.md +++ b/book/src/super-sql/intro.md @@ -8,8 +8,9 @@ The language is a superset of SQL query syntax and includes a modern [type system](types/intro.md) with [sum types](types/union.md) to represent heterogeneous data. -Similar to a Unix pipeline, a SuperSQL query is expressed as a data source followed -by a number of [operators](operators/intro.md) that manipulate the data: +Similar to a Unix pipeline, a SuperSQL [query](queries.md) +is expressed as a data source followed by a number of +[operators](operators/intro.md) that manipulate the data: ``` from source | operator | operator | ... ```