graph-import-from-notes
Extract nodes and edges from notes to build knowledge graphs. Import note-to-key and note-to-tag relationships, enabling structured visualization and analysis of semantic connections.
Instructions
Import nodes and edges from existing notes: note -> key and note -> tags.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | ||
| source | No |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"type": "string"
},
"source": {
"enum": [
"all",
"key"
],
"type": "string"
}
},
"type": "object"
}