export_graph
Export knowledge graphs in multiple formats (JSON, CSV, GraphML, etc.) with optional filtering, compression, and streaming for large datasets.
Instructions
Export knowledge graph in various formats with optional brotli compression and streaming for large graphs
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | Yes | Export format | |
| filter | No | Optional filter | |
| compress | No | Compress output with brotli (auto-enabled for >100KB) | |
| compressionQuality | No | Brotli quality level 0-11 (default: 6). Higher = better compression but slower. | |
| streaming | No | Use streaming mode to write directly to file (requires outputPath) | |
| outputPath | No | File path for streaming export. Auto-enables streaming for graphs with >= 5000 entities. |