π PostgreSQL Schema Inference and Ingestion - Automatically infer graph schemas from normalized PostgreSQL databases (3NF) with proper primary keys (PK) and foreign keys (FK). Uses intelligent heuristics to detect vertices and edges - no manual schema definition needed! Perfect for migrating relational data to graph databases.
π RDF / Turtle Ingestion with Explicit Resource Mapping - Infer graph schemas from OWL ontologies and ingest RDF data using explicit SparqlConnector resource mapping. Supports local Turtle files and remote SPARQL endpoints. Perfect for knowledge graph pipelines built on semantic web standards.
Polymorphic Objects and Relations β Route polymorphic entities and dynamic relations using two vertex_router steps and a dynamic edge step. One objects table (Person, Vehicle, Institution) and one relations table (EMPLOYED_BY, OWNS, FUNDS, etc.) map to a rich graph with type discriminators and relation_map.
TigerGraph bulk load and S3 staging β Opt-in CSV staging and native LOADING JOB, with bindings.staging_proxy and S3GeneralizedConnConfig (MinIO, AWS S3, or other S3-compatible endpoints).
Flat-row dynamic edges with vertex_router β Each CSV row encodes a complete (source, target, relation) tuple. Two vertex_router steps accumulate endpoint vertices into named role slots; a dynamic edge step resolves types from those slots.
Vertex roles and multi-intent edges β One flat row, three same-type vertices (self / parent / child), two edge types. Uses role on vertex steps for named accumulator slots and links on the edge step to emit multiple relationships in one pipeline step.