Declare, evolve and version a graph world model.
GraFlo makes a graph data model a versioned artifact. One GraphManifest — YAML or Python —
declares the whole labeled property graph: vertex and edge types, typed properties, explicit
identities, semantic grounding, ingestion pipelines and connector bindings. From that one document
GraFlo validates the model, evolves it under version control, checks it against a conformance
profile, and projects it into any supported backend.
The manifest is the contract, not the database. Validation happens once, in finish_init, rather
than at write time — so a manifest that loads is a manifest that will project, and the backend
never becomes the place where the model is really defined.
Declare
- Explicit identity, not implicit keys — every vertex declares how it is keyed: a natural key, a
deterministic
hashover chosen properties, an ordered identity funnel (fall through several keys in priority order), ablanknode, or anassignedUUID. Identity backs upserts, so reloads merge on keys instead of duplicating nodes, andsecondary_identitiesgive edge steps additional named lookups. - Typed properties —
INT,UINT,FLOAT,DOUBLE,BOOL,STRING,DATETIME,UUID, andLISTwith a declareditem_type. Types are optional where a backend does not need them and enforced where it does. - Semantic grounding — vertices, edges and properties may carry an
iri,exact_match,synonyms, and — on properties — aunit. Purely descriptive: identity, naming and ingestion behave identically with or without it. - Reusable ingestion —
Resourceactor pipelines (descend, transform, vertex, vertex_router, edge) bind to files, SQL, SPARQL/RDF, REST APIs, Kafka topics or in-memory batches throughBindingsand theDataSourceRegistry.
Evolve and version
- A change algebra, not hand-edited YAML — 37 typed operations (
merge_vertices,rename_relations,change_field_types,add_secondary_identities,project_manifest,merge_manifests, …) applied throughapply_evolution.diff_manifestsderives them from two manifests, so a change set can be generated, reviewed, and replayed. - Content-addressed commits —
graflo commit,log,checkout,verify,revert,stamp. Every commit records a tree hash;verifyreplays each head and checks it, so a stored history that no longer reproduces its manifests is detectable rather than merely suspected. - Invertible operations — most ops carry an inverse computed against the pre-state
(
invert_ops), so a change set can be undone exactly rather than approximately. The few genuinely irreversible ops (a type change, a property removal) are declared as such instead of failing quietly. - Three-way merge with slot-level conflicts —
graflo mergereconciles two commits against their common ancestor. Conflicts are reported per slot (a vertex's identity, one field's type, one edge's directionality) with the ancestor state attached, and a conflicted merge produces no manifest at all rather than a silently chosen side. - Merge two models under declared equivalences —
graflo mergeunions two manifests given explicit vertex/relation equivalence clusters and property alignments. It infers nothing: where two sides disagree on a property type, a unit, an identity, a storage name or a backend flavor, it names the disagreement and refuses. Nothing is silently elected from one side.
Project and load
- One model, eight backends — the same manifest targets ArangoDB, Neo4j, TigerGraph, FalkorDB,
Memgraph, NebulaGraph, a chunked file backend, or PostgreSQL (relational vertex tables plus
junction edge tables).
DatabaseProfileand the DB-aware projection absorb naming, type support, defaults and indexing differences, so backend specifics never leak into the logical model. - Schema migrations — plan and apply guarded deltas against a live database, with each operation
classified by risk and backward compatibility (
graflo migrate-schema; library ingraflo.migrate).
Ground and check
- The World Model Profile —
graflo checkscores a manifest against a named conformance level (world-modelv0.1) of six mechanically checkable assertions: types are grounded in an external vocabulary, every vertex declares an identity mode, every edge declares directionality, every measured property carries a unit, temporal validity is declared or explicitly waived, and provenance is expressible and attached. Operator waivers are first-class — a waived assertion is reported as waived with its reason, never as a pass. graflo lift— plans an existing manifest into a twin-ready schema against a declaredLiftSpec, emitting the planned ops as a reviewable artifact before anything is written.- Manifest as linked data — the GraFlo ontology
(
gf:atontology.growgraph.dev) round-trips a manifest to RDF for tooling, provenance and SPARQL-facing catalogs.
schema—Schema: metadata,core_schema(vertices, edges, typedproperties, identities, semantics), anddb_profile(DatabaseProfile: target flavor, storage names, secondary indexes,default_property_values, …).ingestion_model—IngestionModel: namedresources(actor sequences: descend, transform, vertex, vertex_router, edge, …) and a registry of reusabletransforms.bindings— Connectors (FileConnector,TableConnector,SparqlConnector,APIConnector) plusresource_connectorwiring. Optionalconnector_connectionmaps connectors toconn_proxylabels so YAML stays secret-free; a runtimeConnectionProvidersupplies credentials. See API connector and pagination.
Each block is optional: a manifest may carry only a schema, only bindings, or all three.
# Record the change between two manifests as a content-addressed commit
graflo commit --from-manifest v1.yaml --to-manifest v2.yaml -m "key people by email"
# History, oldest first, with parent edges
graflo log --graph
# Replay every head from the root manifest and check each recorded tree hash
graflo verify --base v1.yaml
# Reconstruct the manifest as of a commit
graflo checkout <commit-id> --base v1.yaml --output-path at-that-point.yaml
# Three-way against the common ancestor; conflicts are reported per slot.
# Omit --take to see them rather than resolve them.
graflo merge <left-id> <right-id> --base v1.yaml
# Record a new commit undoing an earlier one
graflo revert <commit-id> --base v1.yaml
revertis the least exercised of these verbs — it has no functional test in the suite and may need the history checked out from its base first. Prefercheckoutwhen you want a known-good earlier state.
Merge and conformance run on manifests directly, with no history involved:
graflo merge left.yaml right.yaml --op equivalences.yaml -o merged.yaml
graflo check manifest.yaml --profile world-model --json- Source instance — Batches from a
DataSourceTypeadapter (FileDataSource,SQLDataSource,SparqlEndpointDataSource,APIDataSource,KafkaDataSource, …). - Resource (actors) — Maps records to graph elements against the logical schema.
GraphContainer— Intermediate, database-agnostic vertex/edge batches.- DB-aware projection —
Schema.resolve_db_aware()plusVertexConfigDBAware/EdgeConfigDBAwarefor the activeDBType. - Graph DB —
DBWriter+ConnectionManagerand the backend-specificConnection.
| Piece | Role | Code |
|---|---|---|
| Logical graph schema | Manifest schema: vertex/edge definitions, identities, typed properties, DB profile. Constrains pipeline output and projection. |
Schema, VertexConfig, EdgeConfig (under core_schema). |
| Source instance | Concrete input: file, SQL table, SPARQL endpoint, API payload, Kafka topic, in-memory rows. | AbstractDataSource + DataSourceType. |
| Resource | Ordered actors; looked up by name when sources are registered. | Resource in IngestionModel. |
Covariant graph (GraphContainer) |
Batches of vertices/edges before load. | GraphContainer. |
| DB-aware projection | Physical names, defaults, indexes for the target. | Schema.resolve_db_aware(), VertexConfigDBAware, EdgeConfigDBAware. |
| Graph DB | Target LPG; each DBType has its own connector, orchestrated the same way. |
ConnectionManager, DBWriter, per-backend Connection. |
| Change algebra | Typed ops over a manifest, with inverses, content hashes and commits. | graflo.architecture.evolution, graflo.cli.commit. |
| DataSourceType | Connector | DataSource | Schema inference |
|---|---|---|---|
FILE — CSV / JSON / JSONL / Parquet |
FileConnector |
FileDataSource |
manual |
SQL — relational tables (docs focus on PostgreSQL; other engines via SQLAlchemy where supported) |
TableConnector |
SQLDataSource |
automatic for PostgreSQL-style 3NF (PK/FK heuristics) |
SPARQL — RDF files (.ttl, .rdf, .n3) |
SparqlConnector |
RdfFileDataSource |
automatic (OWL/RDFS ontology) |
SPARQL — SPARQL endpoints (Fuseki, …) |
SparqlConnector |
SparqlEndpointDataSource |
automatic (OWL/RDFS ontology) |
API — REST APIs |
APIConnector |
APIDataSource |
manual |
KAFKA — topics |
— | KafkaDataSource |
manual |
IN_MEMORY — list / DataFrame |
— | InMemoryDataSource |
manual |
The eight backends listed under Project and load are the supported output DBType values in graflo.onto. Each uses its own Connection implementation under the shared ConnectionManager / DBWriter / GraphEngine flow.
Graph sources (introspection and bulk export) are supported on Neo4j, ArangoDB, PostgreSQL, and the GraFlo file backend. Note that GraphEngine.migrate_graph() itself currently fails at the write step for every source/target pair; export_graph() and infer_schema_from_graph() are unaffected. See Graph export and migration.
- Schema inference — From 3NF relational layouts (PK/FK heuristics) on any engine SQLAlchemy can reflect — PostgreSQL reads its own catalogue, everything else arrives through reflection — or from OWL/RDFS (
owl:Class→ vertices,owl:ObjectProperty→ edges,owl:DatatypeProperty→ vertex fields). - GraFlo ontology (manifest RDF) — Serialize any
GraphManifestto RDF (Turtle, JSON-LD) using the published vocabulary athttps://ontology.growgraph.dev/graflo(owl:versionInfo1.0.0). Covers schema, ingestion and bindings. Round-trip viagraflo.rdfor themanifest-to-rdf/rdf-to-manifestCLI. This is the meta-model of GraFlo itself — distinct from importing a domain OWL ontology into an LPG schema (RdfInferenceManager). - SPARQL & RDF — Endpoints and RDF files (
.ttl,.rdf,.n3, …); optional OWL/RDFS domain schema inference (rdflib,SPARQLWrapperin the default install). - Graph export — Introspect Neo4j, ArangoDB or PostgreSQL and export to a chunked file backend (
GraFloBackendConfig), or ingest manifest resources straight to disk. - REST API env wiring — Register
base_urlandApiAuthcredentials from environment variables perconn_proxylabel (register_all_api_configs_from_env). - Batching & concurrency — Configurable batch sizes, worker counts, and DB write concurrency on
IngestionParams/DBWriter. GraphEngine— High-level orchestration for infer, define schema, and ingest (define_and_ingest, …);Casterstays available for lower-level control.
Full documentation is available at: growgraph.github.io/graflo
pip install grafloOptional extras (see pyproject.toml → [project.optional-dependencies]):
dev— pytest, ty, pre-commitdocs— MkDocs stack for building the documentation siteplot—pygraphvizfor theplot_manifestCLI and the conflict figures (graflo merge --plot,graflo merge3 --plot); install system Graphviz first
pip install "graflo[dev]"
pip install "graflo[dev,docs,plot]"from suthing import FileHandle
from graflo import Bindings, GraphManifest
from graflo.connections.onto import ArangoConfig
manifest = GraphManifest.from_config(FileHandle.load("schema.yaml"))
manifest.finish_init()
schema = manifest.require_schema()
ingestion_model = manifest.require_ingestion_model()
# Option 1: Load config from docker/arango/.env (recommended)
conn_conf = ArangoConfig.from_docker_env()
# Option 2: Load from environment variables
# Set: ARANGO_URI, ARANGO_USERNAME, ARANGO_PASSWORD, ARANGO_DATABASE
conn_conf = ArangoConfig.from_env()
# Option 3: Load with custom prefix (for multiple configs)
# Set: USER_ARANGO_URI, USER_ARANGO_USERNAME, USER_ARANGO_PASSWORD, USER_ARANGO_DATABASE
user_conn_conf = ArangoConfig.from_env(prefix="USER")
# Option 4: Create config directly
# conn_conf = ArangoConfig(
# uri="http://localhost:8535",
# username="root",
# password="123",
# database="mygraph", # For ArangoDB, 'database' maps to schema/graph
# )
# Note: If 'database' (or 'schema_name' for TigerGraph) is not set,
# Caster will automatically use Schema.metadata.name as fallback
from graflo.architecture.contract.bindings import FileConnector
import pathlib
# Create Bindings with file connectors
bindings = Bindings()
work_connector = FileConnector(regex="\Sjson$", sub_path=pathlib.Path("./data"))
bindings.add_connector(
work_connector,
)
bindings.bind_resource("work", work_connector)
# Or initialize via connectors + resource_connector
# bindings = Bindings(
# connectors=[
# FileConnector(
# name="work_files",
# regex="^work\\.json$",
# sub_path=pathlib.Path("./data"),
# )
# ],
# resource_connector=[{"resource": "work", "connector": "work_files"}],
# # Optional: for SQL/SPARQL connectors, name a proxy; register secrets via ConnectionProvider.
# # connector_connection=[{"connector": "work_files", "conn_proxy": "files_readonly"}],
# )
from graflo.hq.caster import IngestionParams
from graflo.hq import GraphEngine
# Option 1: Use GraphEngine for schema definition and ingestion (recommended)
engine = GraphEngine()
ingestion_params = IngestionParams(
clear_data=False,
# max_items=1000, # Optional: limit number of items to process
# batch_size=10000, # Optional: customize batch size
# resources=["users"], # Optional: ingest only listed resources
# connectors=["users_files"], # Optional: ingest only listed connectors (name or hash)
)
ingest_manifest = manifest.model_copy(update={"bindings": bindings})
ingest_manifest.finish_init()
engine.define_and_ingest(
manifest=ingest_manifest,
target_db_config=conn_conf, # Target database config
ingestion_params=ingestion_params,
recreate_schema=False, # Set to True to drop and redefine schema (script halts if schema exists)
)
# Option 2: Use Caster directly (schema must be defined separately)
# from graflo.hq import GraphEngine
# engine = GraphEngine()
# engine.define_schema(manifest=manifest, target_db_config=conn_conf, recreate_schema=False)
#
# caster = Caster(schema=schema, ingestion_model=ingestion_model)
# caster.ingest(
# target_db_config=conn_conf,
# bindings=bindings,
# ingestion_params=ingestion_params,
# )from graflo.hq import GraphEngine
from graflo.connections.onto import PostgresConfig, ArangoConfig
from graflo import Caster
from graflo.onto import DBType
# Connect to PostgreSQL
postgres_config = PostgresConfig.from_docker_env() # or PostgresConfig.from_env()
# Create GraphEngine and infer schema from PostgreSQL 3NF database
# Connection is automatically managed inside infer_schema()
engine = GraphEngine(target_db_flavor=DBType.ARANGO)
manifest = engine.infer_manifest(
postgres_config,
schema_name="public", # PostgreSQL schema name
)
schema = manifest.require_schema()
ingestion_model = manifest.require_ingestion_model()
# Define schema in target database (optional, can also use define_and_ingest)
target_config = ArangoConfig.from_docker_env()
engine.define_schema(
manifest=manifest,
target_db_config=target_config,
recreate_schema=False,
)
# Use the inferred schema with Caster for ingestion
caster = Caster(schema=schema, ingestion_model=ingestion_model)
# ... continue with ingestionfrom pathlib import Path
from graflo import GraphEngine, DBType
from graflo.db import Neo4jConfig, ArangoConfig, PostgresConfig
from graflo.db.graflo_backend.config import GraFloBackendConfig
engine = GraphEngine(target_db_flavor=DBType.ARANGO)
neo4j = Neo4jConfig.from_env()
arango = ArangoConfig.from_env()
postgres = PostgresConfig.from_env()
backend = GraFloBackendConfig(output_dir=Path("artifacts/neo4j-backend"))
# Neo4j → chunked file backend
engine.migrate_graph(neo4j, backend, recreate_schema=True)
# File backend → Arango migration
engine.migrate_graph(backend, arango, recreate_schema=True)
# File backend → Postgres (relational vertex + junction edge tables)
pg_engine = GraphEngine(target_db_flavor=DBType.POSTGRES)
pg_engine.migrate_graph(backend, postgres, recreate_schema=True)See Graph export and migration and Example 13.
# Serialize manifest YAML to Turtle (embeds gf: vocabulary when --include-ontology is default)
uv run manifest-to-rdf manifest.yaml \
--base-uri https://growgraph.dev/manifests/mygraph/v1 \
--format turtle \
--output mygraph.ttl
# Restore YAML from RDF
uv run rdf-to-manifest mygraph.ttl \
--manifest-uri https://growgraph.dev/manifests/mygraph/v1 \
--output manifest.restored.yamlfrom graflo import GraphManifest
from graflo.rdf import ManifestRdfDeserializer, ManifestRdfSerializer
manifest = GraphManifest.from_yaml("manifest.yaml")
base = "https://growgraph.dev/manifests/mygraph/v1"
ttl = ManifestRdfSerializer().to_turtle(manifest, base)
restored = ManifestRdfDeserializer().from_turtle(ttl, base.rstrip("/"))Ontology source: graflo/rdf/ontology/graflo.ttl. See GraFlo ontology.
from pathlib import Path
from graflo.hq import GraphEngine
from graflo.connections.onto import ArangoConfig
from graflo.architecture.manifest import GraphManifest
engine = GraphEngine()
# Infer schema from an OWL/RDFS ontology file
ontology = Path("ontology.ttl")
schema, ingestion_model = engine.infer_schema_from_rdf(source=ontology)
# Create source bindings (reads a local .ttl file per rdf:Class)
bindings = engine.create_bindings_from_rdf(source=ontology)
# Or point at a SPARQL endpoint instead:
# from graflo.connections.onto import SparqlEndpointConfig
# sparql_cfg = SparqlEndpointConfig(uri="http://localhost:3030", dataset="mydata")
# bindings = engine.create_bindings_from_rdf(
# source=ontology,
# endpoint_url=sparql_cfg.query_endpoint,
# )
target = ArangoConfig.from_docker_env()
engine.define_and_ingest(
manifest=GraphManifest(
graph_schema=schema,
ingestion_model=ingestion_model,
bindings=bindings,
),
target_db_config=target,
)To install requirements
git clone git@github.com:growgraph/graflo.git && cd graflo
uv sync --extra devQuick Start: To start all test databases at once, use the convenience scripts from the docker folder:
cd docker
./start-all.sh # Start all services
./stop-all.sh # Stop all services
./cleanup-all.sh # Remove containers and volumesIndividual Services: To start individual databases, navigate to each database folder and run:
Spin up Arango from arango docker folder by
docker-compose --env-file .env up arangoNeo4j from neo4j docker folder by
docker-compose --env-file .env up neo4jTigerGraph from tigergraph docker folder by
docker-compose --env-file .env up tigergraphFalkorDB from falkordb docker folder by
docker-compose --env-file .env up falkordbMemgraph from memgraph docker folder by
docker-compose --env-file .env up memgraphNebulaGraph from nebula docker folder by
docker-compose --env-file .env upand Apache Fuseki from fuseki docker folder by
docker-compose --env-file .env up fusekiTo run unit tests
uv run pytest testNote: Tests require external database containers (ArangoDB, Neo4j, TigerGraph, FalkorDB, Memgraph, NebulaGraph, Fuseki) to be running. CI builds intentionally skip test execution. Tests must be run locally with the required database images started (see Test databases section above). NebulaGraph tests are gated behind
pytest --run-nebula.
- Python 3.11+ (3.11, 3.12 and 3.13 are supported; CI runs 3.11)
- python-arango
- nebula3-python>=3.8.3 (NebulaGraph v3.x support)
- nebula5-python>=5.2.1 (NebulaGraph v5.x support)
- sqlalchemy>=2.0.0 (for PostgreSQL and SQL data sources)
- rdflib>=7.0.0 + SPARQLWrapper>=2.0.0 (included in the default install)
Open source under the Apache License 2.0. Copyright and trademark notices are in NOTICE: the licence grants no rights in the GraFlo and GrowGraph marks. Releases before the relicensing shipped under the Business Source License 1.1 and keep those terms; see the changelog.
Contributions are welcome! Please feel free to submit a Pull Request.