Graph Data as Code

Understand Data Relationships, Instantly

Leverage the power of graph databases through a simple API. Model, query, and visualize complex networks and interconnected data without managing infrastructure.

Join waitlist

graph.do

import { Graph } from '@do-sdk/graph';

// Initialize your graph service
const myGraph = new Graph('my-knowledge-graph');

// Add nodes (entities)
await myGraph.addNode({
  id: 'user:123',
  type: 'User',
  properties: { name: 'Alice', age: 30 }
});

await myGraph.addNode({
  id: 'product:456',
  type: 'Product',
  properties: { name: 'AI Agent Builder' }
});

// Add an edge (relationship)
await myGraph.addEdge({
  source: 'user:123',
  target: 'product:456',
  label: 'PURCHASED',
  properties: { date: '2023-10-27' }
});

Deliver economically valuable work

Frequently Asked Questions

Do Work. With AI.