Extensions
Documentation
- README
- pgrx SQL Tests
- README
- pg_regress Smoke
- lazy-final
- lazy-final
- lib
- lib
- latency-pgbench-version
- latency-pgbench-version
- commit
- commit
- latency-postgres-version
- latency-postgres-version
- README
- P4.5 weighted-path RLS checkpoint
- CONTRIBUTING
- Contributing to pgGraph
- layered
- layered
- commit
- commit
- README_zh
- pgGraph
- CODE_OF_CONDUCT
- Code of Conduct
- git-status
- git-status
- README
- Selective RLS exact-result comparisons
- git-status
- git-status
- git-status
- git-status
- run-metadata
- run-metadata
- README
- Benchmarks
- requirements
- requirements
- run-metadata
- run-metadata
- run-metadata
- run-metadata
- commit
- commit
- README
- P9 open-type query evidence
- README
- P3 selective RLS scale boundary (1M)
- README
- P3 selective RLS paired benchmark (10k)
- commit
- commit
- SECURITY
- Security Policy
- requirements
- requirements
- git-status
- git-status
- git-status
- git-status
- commit
- commit
- AGENTS
- Package Manager Safety Wrapper
- README
- Selective RLS measurements (10M profile)
- README
- Heavy SQL Tests
- commit
- commit
- run-metadata
- run-metadata
- commit
- commit
- README
- P4.4 unweighted-path RLS checkpoint
- README
- Selective RLS measurements (1m profile)
- README
- Release Compatibility Fixtures
- README
- P0 eager-RLS baseline: 1M rows per source mapping
- README
- SQL Test Directories
- run-metadata
- run-metadata
- run-metadata
- run-metadata
- feature_request
- feature_request
- git-status
- git-status
- bug_report
- bug_report
- scripts
- Scripts
- run-metadata
- run-metadata
- run-metadata
- run-metadata
- README
- P4 resumable DFS selective-RLS checkpoint
- resource-postgres-version
- resource-postgres-version
- README
- P6 edge-type width evidence
- readme
- pgGraph Sandbox
- linux-uname
- linux-uname
- git-status
- git-status
README
Contents

pgGraph

Graph database superpowers for your existing Postgres data.
pgGraph is a PostgreSQL extension for running graph search, traversal, shortest path, and relationship queries directly against ordinary PostgreSQL tables.
Your tables stay the source of truth. pgGraph builds a derived graph index and
lets you query it from SQL using functions in the graph schema.
[!NOTE] PostgreSQL 19 and SQL/PGQ: PostgreSQL removed SQL/PGQ from the PostgreSQL 19 release branch on September 7, 2026. See the official revert commit and release-management discussion. pgGraph supports PostgreSQL 14–18 and does not depend on native SQL/PGQ. Future native integration has no committed PostgreSQL target version.
[!TIP] Looking for a managed version? We have launched a managed version of pgGraph on polygres.com for full high performance GraphRAG on Postgres.
pgGraph 1.2.1 focuses on stability, synchronization, and database isolation.
Upgrading requires updating the extension and rebuilding each graph; see
release notes.
Why pgGraph?
PostgreSQL is great at relational queries, but graph-style questions often require custom recursive SQL for each schema:
- “Find records related to Alice within 2 hops.”
- “Find the shortest path between this person and this company.”
- “Search nodes across registered tables.”
pgGraph adds graph queries on top of your existing PostgreSQL tables, without requiring a separate graph database, graph-specific storage system, or a new query language.
Quickstart
The repository quickstart builds a disposable PostgreSQL 17 image:
git clone https://github.com/evokoa/pggraph.git
cd pggraph
scripts/quickstart.sh
Use the versioned multi-architecture release image
ghcr.io/evokoa/pggraph:1.2.1. Verify its published digest before deployment.
Verify the extensions are loaded (uses psql inside the container, so you
don’t need a local PostgreSQL client):
docker exec pggraph psql -U postgres -d graph \
-c "SELECT extname, extversion FROM pg_extension WHERE extname IN ('graph', 'pg_cron');"
If you have psql installed locally you can also connect directly:
psql -h localhost -U postgres -d graph
Homebrew Installation
The Evokoa Homebrew tap is the convenience channel for local PostgreSQL 17 extension installs.
brew tap Evokoa/tap
brew install pggraph
brew test pggraph
Create and verify the extension in a local database:
brew services start postgresql@17
psql -d postgres -c "CREATE EXTENSION graph;"
psql -d postgres -c "SELECT extname, extversion FROM pg_extension WHERE extname = 'graph';"
The Homebrew tap is updated separately from the Docker and PGXN channels.
For this release, verify that the installed extension reports version 1.2.1.
To build from source or run the full interactive demo instead, use the included quickstart script. It starts a disposable Docker-backed PostgreSQL database, installs pgGraph, creates two normal PostgreSQL tables, discovers the foreign key relationship, builds the graph, and runs example queries. If the image’s scheduled maintenance is already active, the demo waits for that bounded operation to finish before building instead of failing with a transient lock.
You need Docker or Docker Desktop installed and running:
- macOS: install Docker Desktop.
- Windows: install Docker Desktop with WSL2 enabled, then run the script from WSL2 or Git Bash.
- Linux: install Docker Engine and the Docker Compose plugin.
git clone https://github.com/evokoa/pggraph.git
cd pggraph
# run the full quickstart demo
scripts/quickstart.sh
# install into existing Postgres Docker container
scripts/quickstart.sh docker my-postgres 17 appdb postgres
# source build/install with pgrx into local PostgreSQL
scripts/quickstart.sh pgrx
# start Streamlit playground with a preset dataset and mode (csr|mutable)
scripts/quickstart.sh playground panama csr
scripts/quickstart.sh playground panama mutable
Supported modes:
quickstart/demo: build and start the Docker Postgres service, load demo data, and run example graph queries. This is the default mode.setup: build and start Postgres with pgGraph installed, but do not load the sample graph.psql: build and start Postgres, prepare demo data, then openpsql.docker CONTAINER [PG_MAJOR] [DB_NAME] [DB_USER]: install pgGraph into an existing running Postgres Docker container viascripts/install_into_docker_postgres.sh.pgrx [PG_MAJOR]: build and install pgGraph into a local PostgreSQL usingcargo pgrx install.playground [panama|ldbc] [csr|mutable]: start the Streamlit playground using a preset dataset and projection mode.clean: stop the Compose database and remove its volume.
The script works on macOS and Linux from a normal terminal, and on Windows from WSL2 or Git Bash with Docker Desktop. It is not a native PowerShell or Command Prompt script.
Docker images are published for PostgreSQL 14 through 18. Tags without a
PostgreSQL major, such as 1.2.1 and latest, use the default PostgreSQL 17
image.
PostgreSQL 13 is no longer an official support target after upstream EOL, though
the legacy pg13 pgrx feature remains available on a best-effort basis. The
PostgreSQL major version of the extension package must match the target server.
PGXN Source Installation
For PGXN installation, use the verified source ZIP from the signed 1.2.1 release bundle. Because pgGraph is a Rust/pgrx extension, building from source requires the Rust toolchain.
Prerequisites
- PostgreSQL development headers and
pg_config - Rust toolchain (
1.96, pinned bygraph/rust-toolchain.toml) cargo-pgrx0.19.1
Install with pgxn-client
cargo install cargo-pgrx --version 0.19.1 --locked
# Register the installed PostgreSQL with pgrx (auto-detects the major):
PG_MAJOR=$(pg_config --version | sed -E 's/[^0-9]*([0-9]+).*/\1/')
cargo pgrx init --pg${PG_MAJOR}="$(which pg_config)"
pgxn install pgGraph
Manual source install
git clone https://github.com/evokoa/pggraph.git
cd pggraph
make install # may need sudo
psql -d postgres -c "CREATE EXTENSION graph;"
If you have multiple PostgreSQL installations, set PG_CONFIG to the target
server’s pg_config, then re-run the installation:
export PG_CONFIG=/usr/lib/postgresql/17/bin/pg_config
make install
If sudo is needed for make install, preserve PG_CONFIG:
sudo --preserve-env=PG_CONFIG make install
If compilation fails with fatal error: postgres.h: No such file or directory,
install the PostgreSQL server development package for the target PostgreSQL
major, such as postgresql-server-dev-17 on Ubuntu or Debian.
Note: The PGXN distribution name is
pgGraphbut the PostgreSQL extension name isgraph. UseCREATE EXTENSION graph;after installation.
Documentation
More information is available in the pgGraph docs:
Overview · Quickstart · Installation · Playground · Querying · SQL API
pgGraph: High-Speed Graph Execution Inside PostgreSQL
pgGraph is not “Postgres plus graph syntax.” It is a cache-friendly graph execution layer for data that already lives in your ordinary relational tables.
The core idea is simple but powerful: keep PostgreSQL as your system of record, but build a highly optimized, read-heavy graph runtime from that relational metadata. The result is closer to a rebuildable graph index than a graph database: it is built from Postgres tables, operated with Postgres controls, and optimized for repeated bounded traversal over known topology.
The Tech: Why It’s So Fast
Graph traversals usually die on recursive SQL queries or endless joins. pgGraph bypasses this by compiling your relational data into a specialized memory structure.
- O(1) adjacency via CSR.
graph.build()compiles your relationships into forward and reverse compressed sparse row (CSR) edge stores. A node’s neighbors are stored as a contiguous array slice. Instead of rediscovering relationships via SQL, traversals are executed as raw, graph-native memory scans. - A tight traversal loop. SQL-facing calls resolve coordinates, labels,
filters, and tenant scopes before entering the traversal loop. Once inside,
the engine streams CSR neighbors, checking compact logical
EdgeTypeIdvalues from adaptive one-, two-, or four-byte storage, typedFilterIndexvalues, tenant bitmaps, active bits, and sync overlays. - Read-only artifact mapping. Persisted
.pggraphartifacts are written atomically. When a new Postgres backend spins up, it validates the artifact and copies it into a backend-local anonymous mapping before exposing immutable forward graph arrays and the resolution index through read-only views. The private snapshot prevents a concurrent write or truncation of the source file from invalidating live Rust references. It also means each backend that loads a graph retains approximately one artifact-sized private snapshot; base graph pages are not shared across backends through the operating system page cache. This is not a replacement for PostgreSQL’s buffer pool: PostgreSQL remains responsible for table storage, WAL, MVCC, durability, and crash recovery, while pgGraph’s artifact is derived state that can be rebuilt from source tables. - Predictable and safe. Unbounded graph expansion can crash a database. pgGraph includes explicit circuit breakers: depth limits, visited-node tracking, frontier limits, pagination, and strict OOM/memory safeguards.
PostgreSQL Remains Authoritative
Your application data does not move. Source tables, constraints, indexes, ACLs, RLS, backups, and app writes remain 100% standard PostgreSQL concerns.
pgGraph is strictly derived state. You run the algorithms over internal node indexes, and the engine returns source table coordinates or hydrates the raw PostgreSQL rows on the fly. Build, sync, vacuum, and maintenance operations are fully visible and SQL-callable.
How pgGraph Compares
vs. Apache AGE: Execution Layer vs. Storage Layer
Apache AGE is a property graph database inside Postgres. It uses graph
namespaces, vertex and edge tables, agtype, and openCypher.
pgGraph does not ask you to move your data or learn Cypher. You keep your
existing schema and accelerate it with SQL functions like graph.search() and
graph.shortest_path(). Use AGE for a dedicated property graph model; use
pgGraph to add bounded, high-speed graph traversal to an existing relational
schema.
SQL/PGQ and PostgreSQL
PostgreSQL removed SQL/PGQ, including CREATE PROPERTY GRAPH and GRAPH_TABLE,
from its PostgreSQL 19 release branch. The official
revert commit
links the upstream discussion. Native SQL/PGQ integration has no committed
PostgreSQL target version in pgGraph’s roadmap.
pgGraph supports PostgreSQL 14–18 independently of native SQL/PGQ. It precomputes CSR adjacency stores and rebuildable artifacts for workloads that repeatedly traverse the same topology with bounded depth, path limits, filters, tenants, and application pagination. PostgreSQL 19 compatibility is tracked separately on the public roadmap.
Community
pgGraph is built by Evokoa. Follow the project through the links at the top of this README.
License
Apache-2.0. See LICENSE.