link_research_nodes
Create relationships between research nodes to connect ideas using support, contradiction, extension, or prerequisite links for organizing interconnected research concepts.
Instructions
Create a relationship/link between two research nodes (beyond parent-child)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sourceId | Yes | Source node ID | |
| targetId | Yes | Target node ID | |
| relationshipType | Yes | Type of relationship | |
| notes | No | Notes about this relationship |
Input Schema (JSON Schema)
{
"properties": {
"notes": {
"description": "Notes about this relationship",
"type": "string"
},
"relationshipType": {
"description": "Type of relationship",
"enum": [
"supports",
"contradicts",
"extends",
"relates_to",
"prerequisite"
],
"type": "string"
},
"sourceId": {
"description": "Source node ID",
"type": "string"
},
"targetId": {
"description": "Target node ID",
"type": "string"
}
},
"required": [
"sourceId",
"targetId",
"relationshipType"
],
"type": "object"
}