Show HN: BlitzGraph – Supabase for graphs, built for LLM agents

Hacker News Top Products

Summary

BlitzGraph is a backend service for graph databases, designed as an AI-native alternative to Supabase tailored for LLM agents.

Hello HN After becoming allergic to SQL, I opened 120+ issues in Dgraph, Typedb and surrealdb looking for the perfect graphDB. None of them was built for agents nor were they the perfect fit for what we wanted to achieve: fully ditching the SQL legacy to properly model reality. So we decided to build BlitzGraph<p>In BlitzGraph, records (units) can belong to multiple types (kinds) and evolve through time. Also polymorphic relations are first class and multiple kinds can play the same role. This design helps to escape the old table paradigm and track entities throughout their lifecycle without awkward self-joins that connect an entity to itself under different IDs in other tables<p>An example:<p><pre><code> { &quot;$id&quot;: &quot;amazn&quot;, &quot;$kinds&quot;: [&quot;Company&quot;, &quot;Prospect&quot;], deal: ... } &#x2F;&#x2F; Day 1 { &quot;$id&quot;: &quot;amazn&quot;, &quot;$kinds&quot;: [&quot;Company&quot;, &quot;Customer&quot;], contract: .. } &#x2F;&#x2F; Day 7 { &quot;$id&quot;: &quot;amazn&quot;, &quot;$kinds&quot;: [&quot;Company&quot;, &quot;Churned&quot;], churnCause: &quot;...&quot; }, ... &#x2F;&#x2F; Day 86 </code></pre> What makes BlitzGraph different:<p><pre><code> - GraphQL-like nested queries and mutations https:&#x2F;&#x2F;blitzgraph.com&#x2F;docs - Polymorphic records and relations - Bidirectional O(1) relations - Referential integrity with native cardinality validations - JSON query&#x2F;mutation language designed so AI agents can build them programatically - Batched queries&#x2F;mutations without N+1 issues - Built-in frontend engine for quick dashboards and MVPs - Native full text search, file storage, computed fields, ephemeral subspaces, unit history... </code></pre> Honest comparisons:<p>- vs typedb: amazing db, but not ideal for app development. On the other hand we loved and brought their inference ideas and how mutations execute smartly instead of line per line - vs surrealdb: Several core differences, a key one is that we run validations and trasnformations in topological order, and our edges are first class citizens - vs dgraph: Their cool features like post commit hooks were attached to the graphQL layer, in BG it is fundational - neo4j: If you&#x27;ve tried it, you know - vs supabase&#x2F;pg: BG is slower for flat queries but faster in nested ones. But with BG mainly you get rid of the tables paradigm and jump into the graph world while being able to build apps<p>Not ready:<p>- While blitzgraph is already an excellent memory backend for AI agents, we still need to finish the semantic search engine - Query planner is not optimized - Cloud frontends have no native auth engine yet<p>Beta is live, please break things! - Public playground: <a href="https:&#x2F;&#x2F;blitzgraph.com&#x2F;#playground" rel="nofollow">https:&#x2F;&#x2F;blitzgraph.com&#x2F;#playground</a> - MCP: <a href="https:&#x2F;&#x2F;blitzgraph.com&#x2F;mcp" rel="nofollow">https:&#x2F;&#x2F;blitzgraph.com&#x2F;mcp</a>
Original Article
View Cached Full Text

Cached at: 06/18/26, 02:45 AM

# BlitzGraph - The AI-native backend. Source: [https://blitzgraph.com/](https://blitzgraph.com/) Loading\.\.\.

Similar Articles

Show HN: LatticeDB – Like SQLite but for graph databases

Hacker News Top

LatticeDB is an embedded property-graph database that integrates vector and full-text indexing into a single-file format, enabling graph traversal, similarity search, and BM25 search in one query layer for local applications.

Graph Engineering (GitHub Repo)

TLDR AI

A curated collection of research papers, benchmarks, and open-source projects on Graph Engineering in the era of LLM Agents, accompanying an arXiv survey paper to advance research from individual to system intelligence.

Graph engineering ? Or we can say agents on steroids....

Reddit r/artificial

Introduces GraphARC, an MIT-licensed open-source tool that lets a model author agent graph topologies at runtime, with a deterministic admission gate for auditable execution, built on LangGraph and running locally via ollama or against cloud APIs.

Show HN: HelixDB – A graph database built on object storage

Hacker News Top

HelixDB is a graph-vector database built in Rust for knowledge graphs and AI memory, offering a unified platform that supports graph, vector, KV, document, and relational data models, with tools for easy local and cloud deployment.