Marketplace
<div align="center"> <h3>💎 Premium sponsors</h3> <p> <a href="https://id8media.com"><img src=".github/assets/id8media.svg" height="44" alt="ID8 Media" /></a> <a href="https://one-studio.co"><img src=".github/assets/one-studio.jpeg" height="44" alt="One Studio" /></a> </p> <p><sub>Support togo — <a href="https://github.com/sponsors/fadymondy">become a sponsor</a>.</sub></p> </div>
data
Other3 providerstogo data capability — uniform Query over a pluggable source (pg/bigquery/databricks/iceberg)
togo-framework
bash
togo install togo-framework/dataInstall
bash
togo install togo-framework/datatogo's data capability — a uniform Query interface over a pluggable source.
The built-in pg backend queries the app's Postgres (the
db superpowers image), so pg_analytics
(OLAP) and pg_search (BM25) come for free — no separate engine. Federation
backends query external sources:
Backend | Repo |
|---|---|
| pg (default) | built in |
| BigQuery | togo-framework/data-bigquery |
| Databricks SQL | togo-framework/data-databricks |
| Apache Iceberg | togo-framework/data-iceberg |
Rows per page
1–4 of 4Page 1 of 1
bash
togo install togo-framework/data-bigquery
togo provider:use data bigquerygo
d := data.FromKernel(k)
rows, _ := d.Query(ctx, "SELECT count(*) AS n FROM orders")
When to reach past
pg: only when data must out-scale, out-live, or be shared beyond a single Postgres — see the db notes. Most apps stay onpg.
<div align="center"> <h3>💎 Premium sponsors</h3> <p> <a href="https://id8media.com"><img src=".github/assets/id8media.svg" height="44" alt="ID8 Media" /></a> <a href="https://one-studio.co"><img src=".github/assets/one-studio.jpeg" height="44" alt="One Studio" /></a> </p> <p><sub>Support togo — <a href="https://github.com/sponsors/fadymondy">become a sponsor</a>.</sub></p> </div>