diff options
author | Munyoki Kilyungi | 2023-07-21 17:47:54 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-07-30 12:29:56 +0300 |
commit | c0873959703e31c4728ad74910a672751502dbf5 (patch) | |
tree | 846e66ff7141a688b05bb318d4cab4dac7c1aa4b /dump | |
parent | 36e4e31556e6e09396393f3cef3c802bc7b460bb (diff) | |
download | gn-transform-databases-c0873959703e31c4728ad74910a672751502dbf5.tar.gz |
Replace "?s ?p ?o" with "*"
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'dump')
-rw-r--r-- | dump/special-forms.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dump/special-forms.scm b/dump/special-forms.scm index 7fde470..fce3a11 100644 --- a/dump/special-forms.scm +++ b/dump/special-forms.scm @@ -495,7 +495,7 @@ The above query results to triples that have the form: (if (< n 3) (length result) n))))) - (format #t "SELECT ?s ?p ?o WHERE { ~%") + (format #t "SELECT * WHERE { ~%") (for-each (match-lambda ((predicate . object) (match object |