Last updated

Structured Data to Knowledge Graph

Papr supports direct structured data ingest so developers can map application entities into memory graph nodes and relationships.

Best Fit Use Cases

  • CRM and support systems
  • Product catalogs and pricing models
  • Workflow and ticketing systems
  • Domain-specific operational data

Integration Modes

Auto Mode

Use when ingesting unstructured text and letting extraction infer entities.

Manual Mode

Use when you already have structured records and want precise graph control.

Manual mode uses:

  • memory_policy.mode = "manual"
  • explicit nodes
  • explicit relationships

Minimal Manual Example

{
  "content": "sync event",
  "memory_policy": {
    "mode": "manual",
    "nodes": [
      {"id": "acct_1", "type": "Account", "properties": {"name": "Acme"}}
    ],
    "relationships": []
  }
}