Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.35 KB

File metadata and controls

40 lines (26 loc) · 1.35 KB
title Home
layout default
nav_order 1

SuperKit

{% assign expert = site.pages | where: "name", "superdb-expert.md" | first %}for SuperDB {{ expert.superdb_version }}

Documentation, tutorials, and recipes for SuperDB.

Guides

  • [Expert Guide]({% link docs/superdb-expert.md %}) — Comprehensive SuperSQL syntax reference covering data types, operators, expressions, aggregations, and more.
  • [Upgrade Guide]({% link docs/zq-to-super-upgrades.md %}) — Migration guide for upgrading from zq to SuperDB, with all breaking changes documented.

Tutorials

Step-by-step tutorials covering common SuperDB patterns:

{% assign tutorials = site.pages | where_exp: "page", "page.parent == 'Tutorials'" | sort: "nav_order" %} {% for tutorial in tutorials %}

  • [{{ tutorial.title }}]({{ tutorial.url | relative_url }}) {% endfor %}

Recipes

Reusable SuperSQL functions and operators:

{% assign recipes = site.pages | where_exp: "page", "page.parent == 'Recipes'" | sort: "nav_order" %} {% for recipe in recipes %}

  • [{{ recipe.title }}]({{ recipe.url | relative_url }}) {% endfor %}

Content is also available through the SuperDB MCP server for use with coding agents.

{% if site.data.versions %}Last updated: {{ site.data.versions.last_updated }}{% endif %}