Get Wiki Graph Seed
Retrieve an initial set of nodes and edges for graph visualization. Optionally filter by page type, creation date, or search keyword.
Returns 402 if wiki is not plan-eligible or not activated.
Path parameters
Workspace GUID
Query parameters
Filter by page type (ENTITY, MENTION, CUSTOM, etc.)
ISO 8601 datetime — include only pages updated on or after this time
Optional search keyword to filter the seed
Restrict the seed graph to wiki pages mentioned by notes inside this folder, including its descendant folders (recursive). An empty, nonexistent, or inaccessible folder yields an empty graph. The value must be numeric; a non-numeric value returns 400.
Maximum nodes to return (default 200, max 200)
Response
Wiki graph with nodes and edges
Example response
{
"nodes": [
{
"guid": "page_abc123",
"canonicalName": "Alice Kim",
"pageType": "ENTITY",
"entitySubtype": "PERSON",
"extractionStatus": "EXTRACTED",
"mentionCountVisible": 5
}
],
"edges": [
{
"guid": "link_abc123",
"sourcePageGuid": "page_src_123",
"targetPageGuid": "page_tgt_456",
"linkType": "works_at",
"linkTypeDisplayKo": "근무처",
"linkTypeDisplayEn": "Works At",
"isDirectional": true
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.