Marketplace

data

Other3 providers

togo data capability — uniform Query over a pluggable source (pg/bigquery/databricks/iceberg)

togo-framework
bash
togo install togo-framework/data

Install

bash
togo install togo-framework/data

togo'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
BigQuerytogo-framework/data-bigquery
Databricks SQLtogo-framework/data-databricks
Apache Icebergtogo-framework/data-iceberg
Rows per page
1–4 of 4
Page 1 of 1
bash
togo install togo-framework/data-bigquery
togo provider:use data bigquery
go
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 on pg.


<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> &nbsp;&nbsp;&nbsp;&nbsp; <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>