Skip to main content
TuringDB is a graph database that stores connected data (nodes and relationships) with built-in version control. The system combines graph database capabilities with time travel, enabling isolated workspaces, full change tracking, and safe collaboration. When you submit a Change, TuringDB checks it against the current state of main and rejects conflicting submissions, so you never silently overwrite someone else’s work. With version control, you can explore ideas in parallel, test “what-if” hypotheses, reproduce past states, and audit data evolution. It’s like Git—but for graph data.

Core Concepts

TuringDB’s versioning scheme borrows familiar concepts from Git and Perforce: Commit: A unit of change. Commits include new nodes/edges, updates, or deletions. Main branch: Canonical history of all accepted and merged commits. Change: An isolated “branch” of the graph where you can make commits without affecting main. HEAD: The current tip of a Change or the main branch—i.e., the active snapshot of your graph. With these primitives, you can: Safely experiment in isolation Audit the entire commit history “Time travel” by checking out a past commit Reproduce previous analyses and results Roll back accidental or problematic changes

Usage Guide

  1. Create and switch to a new Change
This creates a new branch (change) and switches your workspace to it.
  1. Modify the graph using Cypher-style queries:
A change can contain any number of commits. Each commit captures the exact transformation applied to the graph.
  1. Merge back to main once you’re happy with your updates:
This submits your changes to the main branch and merges all its commits. You can then inspect your updated graph history.

Practical Example: Protein Interaction Study

Load the Reactome knowledge graph
Query original graph
Add new data
This adds a WikipediaPage node and connects it to APOE-4. Submit the change
The current state of the graph’s history can be represented by the following diagram. Updated graph history Now everyone sees the APOE-4 wiki connection as part of the main graph.
Time Travel Need to reproduce a past result? Just check out a previous commit:
Poof—back in time. The Wikipedia node vanishes because it didn’t exist yet in this snapshot.
TuringDB gives you Git-style power, but for graph data. Explore, simulate, track, and revert—all in real time.