analyzeGraph
Analyze network graphs within Heptabase by computing metrics like centrality, clustering, and density, and export results to a specified path. Ideal for data-driven insights from whiteboard structures.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exportPath | No | ||
metrics | No | ||
whiteboardId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exportPath": {
"type": "string"
},
"metrics": {
"items": {
"enum": [
"centrality",
"clustering",
"density"
],
"type": "string"
},
"type": "array"
},
"whiteboardId": {
"type": "string"
}
},
"type": "object"
}