Quickstart
This guide walks you from a fresh install to your first graph query.
Prerequisites
Section titled “Prerequisites”- A Kubernetes cluster (any of: GKE, EKS, AKS, on-prem k3s, or a local dev cluster like OrbStack / minikube / kind).
- A data source — Starburst, Snowflake, BigQuery, Databricks, S3, GCS, or a CSV file.
kubectlconfigured to talk to your cluster.
1. Install with Helm
Section titled “1. Install with Helm”helm repo add viograph https://helm.viograph.iohelm repo updatehelm install viograph viograph/viograph --namespace viograph --create-namespaceThe chart installs the control plane, export worker, and a Postgres metadata store. Everything runs in your cluster under your identity.
2. Open the dashboard
Section titled “2. Open the dashboard”kubectl port-forward svc/dashboard 3000:3000 -n viographopen http://localhost:30003. Connect a data source
Section titled “3. Connect a data source”- Go to Connect Source.
- Pick your warehouse type (Snowflake / BigQuery / Databricks / Starburst / S3 / GCS / CSV).
- Fill in credentials — they’re stored in your cluster, never sent to us.
- Click Test connection.
4. Map your tables
Section titled “4. Map your tables”- Go to Connect Data.
- Pick one or more tables to become nodes (e.g.
customers,accounts,transactions). - Pick one or more tables to become edges (e.g.
transferswithfrom_account_id/to_account_idcolumns). - Save the mapping.
5. Launch a graph
Section titled “5. Launch a graph”- Go to Launch Graphs → New instance.
- Select the mapping you just created.
- The control plane will spin up a wrapper pod, load your data, and make the graph queryable.
6. Run your first query
Section titled “6. Run your first query”- Go to Explore Graphs.
- Click Pattern Library → pick a pattern that matches your data.
- Or open the Cypher Editor and write your own:
MATCH (n)-[r]->(m)RETURN n, r, mLIMIT 25Click Run (or Cmd+Enter). You should see your graph rendered on the
canvas within seconds.
Next steps
Section titled “Next steps”- Dashboard features — Pattern Library, Cypher Editor, AI assistant, Schema Browser, Workspaces, Sharing.
- Cypher for SQL people — ramp-up guide if you know SQL and want to map it to Cypher.
- Use cases — fraud, supply chain, citation networks, patent intelligence.