From 613dd1721cd6c1e43dd3107224dc3b8b9c57c25c Mon Sep 17 00:00:00 2001 From: Jordan Morgan Date: Wed, 22 Jul 2026 11:27:29 -0500 Subject: [PATCH] Fix README query example: `transactions` table does not exist `superwall query "SELECT count() FROM transactions"` fails against live ClickHouse with UNKNOWN_TABLE. Analytics tables live in the `sw` and `open_revenue` databases; use the verified `sw.events_rep` example instead (matches the docs and the superwall skill's data-analytics reference). Co-Authored-By: Claude Fable 5 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dc6fc1..b6ebe65 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ superwall bootstrap # the whole account tree at a glance Run SQL directly against your organization's ClickHouse analytics data: ```bash -superwall query "SELECT count() FROM transactions" +superwall query "SELECT count() FROM sw.events_rep" superwall query --file mrr.sql cat query.sql | superwall query ```