Page Graph vs Knowledge Graph

🌐 Product overview: Page graph on wikantik.com — a plain-language walkthrough for readers and AI agents.

Wikantik distinguishes two graph subsystems. Confusing them is the single most common source of bugs and miscommunication when working on retrieval, navigation, or admin tooling. Use the right name.

Page Graph

A graph whose edges are real page-to-page wikilinks.

Knowledge Graph

A graph whose nodes are LLM-extracted entities and whose edges are co-mention or typed-relation predicates between them.

How to tell them apart

QuestionPage GraphKnowledge Graph
What is an edge?A wikilink one author wrote in one pageAn LLM-extracted predicate between two entities
What is a node?A pageAn entity (concept, person, organisation, etc.)
Who curates it?Authors (by writing links)Extraction pipeline (with admin review)
Where does it live in code?pagegraph.*knowledge.*, kg_*

What was removed (2026-05-02)

The frontmatter relations: mechanism — a third concept that let authors hand-curate typed edges between pages without writing real wikilinks — was removed. Three of 951 pages used it; nothing load-bearing depended on it. After removal, the Page Graph is strictly the wikilinks graph. If curated typed edges between concepts need to come back later, they belong on the Knowledge Graph as admin-approved edges, not in page frontmatter.

Page Graph consumers

Code that reads wikilink or cluster data from the Page Graph subsystem:

See also