From fb44f6f67e2fc357f1c5d169e5a92c741ae5c191 Mon Sep 17 00:00:00 2001 From: mahlon <> Date: Mon, 31 Mar 2025 19:43:49 +0000 Subject: [PATCH] Tabs --> spaces in the USAGE. FossilOrigin-Name: bb8b92f8484a93b53477ab933cc50ecf39c62914818e2877b200f7211a6eefd9 --- USAGE.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/USAGE.md b/USAGE.md index 726e21f..3266db8 100644 --- a/USAGE.md +++ b/USAGE.md @@ -79,7 +79,7 @@ echo $db.config # Is compression enabled? if db.config.enable_compression: - echo "Yes!" + echo "Yes!" ``` You can alter configuration options when connecting by passing a `kuzuConfig` @@ -314,9 +314,9 @@ each `KuzuFlatTuple` -- essentially, each row that was returned in the set. ```nim var res = conn.query """ - UNWIND [1,2,3] AS items - UNWIND ["thing"] AS thing - RETURN items, thing + UNWIND [1,2,3] AS items + UNWIND ["thing"] AS thing + RETURN items, thing """ # KuzuFlatTuple can be stringified just like the result set. @@ -335,8 +335,8 @@ before calling. ```nim var res = conn.query """ - UNWIND [1,2,3] AS items - RETURN items + UNWIND [1,2,3] AS items + RETURN items """ # Get the first row. @@ -484,10 +484,10 @@ var res = conn.query """ """ res = conn.query """ - MATCH path = (a:Person)-[r:Knows]->(b:Person) - WHERE r.since > 2000 - RETURN r.since as Since, nodes(path) as People - ORDER BY r.since + MATCH path = (a:Person)-[r:Knows]->(b:Person) + WHERE r.since > 2000 + RETURN r.since as Since, nodes(path) as People + ORDER BY r.since """ # Who knows who since when?