{"id":245885,"date":"2026-02-11T11:12:04","date_gmt":"2026-02-11T10:12:04","guid":{"rendered":"https:\/\/graphwise.ai\/?post_type=blog-post&#038;p=245885"},"modified":"2026-07-10T05:38:24","modified_gmt":"2026-07-10T03:38:24","slug":"from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics","status":"publish","type":"blog-post","link":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/","title":{"rendered":"From Retrieval to Reasoning: Enhancing HippoRAG with Graph-Based Semantics"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Retrieval Augmented Generation (RAG) has become the standard for grounding&nbsp;<a href=\"https:\/\/gws-sso-test.graphwise.ai\/fundamentals\/what-is-large-language-model\/\" target=\"_blank\" rel=\"noreferrer noopener\">large language models (LLMs)<\/a>&nbsp;in proprietary data. However, as we push RAG systems into more complex domains, we also see the limitations of such solutions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Standard RAG relies heavily on vector similarity search. While efficient, it suffers from a fundamental \u201ctunnel vision\u201d: it retrieves chunks based on semantic proximity to the query, but often fails to \u201cconnect the dots\u201d across disjointed pieces of information. It struggles with multi-hop reasoning, where the answer lies in the relationship between two distant documents, not in the documents most similar to the initial question.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Enter&nbsp;<strong>GraphRAG<\/strong>, and specifically&nbsp;<strong><a href=\"https:\/\/arxiv.org\/abs\/2502.14802\" target=\"_blank\" rel=\"noreferrer noopener\">HippoRAG 2<\/a><\/strong>&nbsp;(Hippocampal Retrieval-Augmented Generation). These systems attempt to solve this challenge by structuring data as a graph, allowing retrieval based on relationships rather than just surface-level similarity. HippoRAG takes this a step further by mimicking the neurobiological processes of human long-term memory to create additional associative links. The latter is the major difference to most of the popular GraphRAG implementations, which derive schemaless&nbsp;<a href=\"https:\/\/gws-sso-test.graphwise.ai\/fundamentals\/what-is-a-knowledge-graph\/\" target=\"_blank\" rel=\"noreferrer noopener\">knowledge graphs<\/a>&nbsp;from documents.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, even HippoRAG has a limitation: it typically builds its graph based on simple co-occurrence or open information extraction. It lacks a true \u201cworld view\u201d. It also still relies on semantic similarity to manage to traverse the relations it has found in the data properly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this post, we explore how to supercharge the graph-based retrieval process by injecting a&nbsp;<strong>semantic backbone<\/strong>. We will demonstrate how replacing generic graph construction with strict&nbsp;<strong><a href=\"https:\/\/gws-sso-test.graphwise.ai\/fundamentals\/what-is-ontology\/\">ontologies<\/a><\/strong>&nbsp;and structured&nbsp;<strong>knowledge graphs<\/strong>&nbsp;transforms HippoRAG from an associative engine into a reasoning engine.<\/p>\n\n\n\n<h2 id='how-does-hipporag-work'  id=\"boomdevs_1\" class=\"wp-block-heading\" id=\"how-does-hipporag-work\">How does HippoRAG work<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To understand how we improved the system, we first need to understand the unique architecture of&nbsp;<strong>HippoRAG<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Unlike standard GraphRAG approaches that might simply traverse a knowledge graph, HippoRAG is inspired by the&nbsp;<strong>Hippocampal Indexing Theory<\/strong>&nbsp;of human memory. In the human brain, the&nbsp;<strong>Neocortex<\/strong>&nbsp;stores actual memories (analogous to LLM parameters and a document corpus), while the&nbsp;<strong>Hippocampus<\/strong>&nbsp;acts as a dynamic index, storing the pointers and associative relationships between those memories.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">HippoRAG replicates this duality to enable faster, multi-hop retrieval. It operates in two distinct phases:<\/p>\n\n\n\n<h3 id='1-offline-indexing-the-associative-graph'  id=\"boomdevs_2\" class=\"wp-block-heading\" id=\"1-offline-indexing-the-associative-graph\">1. Offline indexing (the associative graph)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In the standard implementation, HippoRAG processes the document corpus to create a schemaless graph.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Extraction<\/strong>: It uses an LLM (or OpenIE) to identify key noun phrases and entities within the documents.<\/li>\n\n\n\n<li><strong>Graph construction<\/strong>: It builds a knowledge graph where nodes are these extracted entities. Edges are created based on co-occurrence (two entities appearing in the same passage) or strong semantic similarity.<\/li>\n\n\n\n<li><strong>Result<\/strong>: A massive associative map where Document A is linked to Document B because they share the entity \u201cPython,\u201d even if the documents never explicitly reference each other.<\/li>\n<\/ul>\n\n\n\n<h3 id='2-online-retrieval-the-neurobiological-pattern'  id=\"boomdevs_3\" class=\"wp-block-heading\" id=\"2-online-retrieval-the-neurobiological-pattern\">2. Online retrieval (the neurobiological pattern)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">When a user asks a query, HippoRAG doesn\u2019t just look for keywords; it simulates a neural activation process.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Vector search on triples<\/strong>: The system does a vector search based on the query to find the triples with the biggest vector similarity to the query.<\/li>\n\n\n\n<li><strong>Node activation<\/strong>: These entities are located in the graph and are selected as the starting point for Personalized PageRank.<\/li>\n\n\n\n<li><strong>Personalized PageRank<\/strong>: This is the core mathematical engine. The system uses the\u00a0<a href=\"https:\/\/snap.stanford.edu\/class\/cs224w-readings\/Brin98Anatomy.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Personalized PageRank algorithm<\/a>\u00a0to spread this activation across the graph, in a manner similar to the\u00a0<a href=\"https:\/\/en.wikipedia.org\/wiki\/Priming_(psychology)\" target=\"_blank\" rel=\"noreferrer noopener\">priming<\/a>\u00a0in the human brain. By using the nodes with the highest vector similarity, it traverses the graph to find the most relevant documents.<\/li>\n\n\n\n<li><strong>Ranking<\/strong>: The system identifies which\u00a0<em>documents<\/em>\u00a0are most strongly connected to the highly activated nodes in the graph and retrieves them.<\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-group blog-info-box is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-premium-icon premium-icon premium-icon-d3dc915f38de premium-icon__container is-style-var1-icon\" data-icontype=\"icon\" id=\"premium-icon-d3dc915f38de\"><div class=\"premium-icon-container premium-icon-class-css\" style=\"border-style:none;box-shadow:0px 0px 10px transparent \"><div class=\"premium-icon-content premium-icon__none\"><div style=\"display:inline-flex;justify-content:center;align-items:center;cursor:default\" class=\"premium-icon premium-icon-type fas_lightbulb icon-type-fa\"><svg style=\"display:inline-block;vertical-align:middle\" viewBox=\"0 0 384 512\" height=\"24\" width=\"24\" fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z\"><\/path><\/svg><\/div><\/div><\/div><\/div>\n\n\n\n<h2 id='key-insight'  id=\"boomdevs_4\" class=\"wp-block-heading\" id=\"h-key-insight\">Key insight:<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Because the activation spreads through the graph, HippoRAG can find a document that contains none of the query words, provided it is strongly linked to the query through a chain of intermediate entities. This is the essence of\u00a0<strong>multi-hop retrieval<\/strong>.<\/p>\n<\/div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">However, the \u201cVanilla\u201d HippoRAG relies on the LLM to hallucinate the connections or extract them loosely. By replacing this loose association with a rigorous&nbsp;<strong>ontology<\/strong>&nbsp;and a&nbsp;<strong>knowledge graph<\/strong>, we provide the PageRank algorithm with a much cleaner, noise-free highway to travel on.<\/p>\n\n\n\n<h2 id='extending-hipporag-with-an-ontology-and-a-knowledge-graph'  id=\"boomdevs_5\" class=\"wp-block-heading\" id=\"extending-hipporag-with-an-ontology-and-a-knowledge-graph\">Extending HippoRAG with an ontology and a knowledge graph<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To transform HippoRAG from an associative engine into a reasoning one, we extended the pipeline by injecting a structured \u201cspine\u201d: an automatically generated ontology and a knowledge graph. This moves us away from loose, probability-based connections to explicit, logic-based relationships.<\/p>\n\n\n\n<h3 id='1-ontology-creation'  id=\"boomdevs_6\" class=\"wp-block-heading\" id=\"1-ontology-creation\">1. Ontology creation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The first step is moving from chaos to order. Instead of ingesting raw triples immediately, we iterate over the relations initially extracted by HippoRAG. We employ an LLM agent that acts as a schema architect. At each step, this agent reviews a batch of extracted relations alongside the ontology built so far. Guided by a user-defined goal, the agent infers necessary classes and relations, deciding iteratively how the world should be structured. This ensures the ontology isn\u2019t just a list of words, but a coherent framework tailored to the specific domain.<\/p>\n\n\n\n<h3 id='2-knowledge-graph-creation'  id=\"boomdevs_7\" class=\"wp-block-heading\" id=\"2-knowledge-graph-creation\">2. Knowledge graph creation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once the ontology provides the scaffolding, we populate the building. A second LLM agent iterates over the documents to extract a strict knowledge graph that conforms to our new ontology. To ensure data integrity, a dedicated \u201crepair agent\u201d follows behind, fixing syntax errors, and ensuring compliance.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Crucially, we also build an&nbsp;<strong>Inverted Index<\/strong>. In standard graph systems, you might know&nbsp;<em>that<\/em>&nbsp;\u201cJohn knows Jane,\u201d but you lose the context of&nbsp;<em>how<\/em>. The inverted index links every entity and triple in the knowledge graph back to the exact source text.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Without the index<\/strong>: The graph knows<code>(John, knows, Jane).<\/code><\/li>\n\n\n\n<li><strong>With the index<\/strong>: The system can trace the\u00a0<code>knows<\/code>\u00a0relation back to the paragraph describing \u201cJohn met Jane at a jazz bar in Chicago.\u201d This turns the knowledge graph from a simple fact store into a navigational map that points back to the rich nuance of the original documents.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/HippoRAG-vs-Semantic-RAG-square.png\"><\/a><a href=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/HippoRAG-vs-Semantic-RAG-square.png\"><\/a><\/p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5c4c2bdc43c&quot;}\" data-wp-interactive=\"core\/image\" data-wp-key=\"6a5c4c2bdc43c\" class=\"wp-block-image size-large is-resized wp-lightbox-container\"><img decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/HippoRAG-vs-Semantic-RAG-square.png\" alt=\"\" style=\"width:700px\"\/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\tdata-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.thisImage.buttonRight\"\n\t\t\tdata-wp-style--top=\"state.thisImage.buttonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><figcaption class=\"wp-element-caption\">Figure 1. Adding semantics to HippoRAG<\/figcaption><\/figure>\n\n\n\n<h3 id='3-inference'  id=\"boomdevs_8\" class=\"wp-block-heading\" id=\"3-inference\">3. Inference<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">We split the inference process into two synergistic retrieval steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Associative Retrieval<\/strong>: We utilize HippoRAG\u2019s Personalized PageRank to identify documents based on network proximity and activation.<\/li>\n\n\n\n<li><strong>Structured Retrieval<\/strong>: Simultaneously, we perform\u00a0<a href=\"https:\/\/gws-sso-test.graphwise.ai\/fundamentals\/what-is-sparql\/\" target=\"_blank\" rel=\"noreferrer noopener\">SPARQL<\/a>\u00a0queries against the knowledge graph. To jumpstart this, we provide the model with a list of relevant triples, helping it anchor its search within the graph.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The outputs from both streams \u2014 the document context from HippoRAG and the structured facts from the knowledge graph \u2014 are fed into a final synthesis agent. This agent combines the \u201cassociative\u201d and the \u201clogical\u201d to answer the user\u2019s query. A visualization of the inference pipeline can be explored in&nbsp;<em>Figure 2<\/em>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/Graphrag-Inference-diagram-scaled.jpg\"><\/a><a href=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/Graphrag-Inference-diagram-scaled.jpg\"><\/a><\/p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5c4c2bdd256&quot;}\" data-wp-interactive=\"core\/image\" data-wp-key=\"6a5c4c2bdd256\" class=\"wp-block-image size-large is-resized wp-lightbox-container\"><img decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/Graphrag-Inference-diagram-scaled.jpg\" alt=\"\" style=\"width:550px\"\/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\tdata-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.thisImage.buttonRight\"\n\t\t\tdata-wp-style--top=\"state.thisImage.buttonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><figcaption class=\"wp-element-caption\"><em>Figure 2. Visualization of the Inference pipeline<\/em><\/figcaption><\/figure>\n\n\n\n<h2 id='evaluation-and-results'  id=\"boomdevs_9\" class=\"wp-block-heading\" id=\"evaluation-and-results\">Evaluation and results<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To test the efficacy of this semantic backbone, we turn to&nbsp;<a href=\"https:\/\/arxiv.org\/abs\/2108.00573\" target=\"_blank\" rel=\"noreferrer noopener\">MuSiQue<\/a>, widely considered the most complex multi-hop reasoning dataset available. MuSiQue requires a system to successfully navigate 2 to 4 distinct \u201chops\u201d of information to arrive at an answer. For example, a 3-hop question could look something like \u201cIn which country was the director of the film \u2018The Great Gatsby\u2019 born?\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We avoided standard \u201cexact match\u201d metrics, which often penalize correct but verbose answers. Instead, we employed an LLM-as-a-judge evaluation protocol that assesses whether the answer is accurate and contains the necessary information, regardless of phrasing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The majority of questions in MuSiQue are 2-hop. For that reason, we separated evaluations into one evaluation on 2-hop only questions and one evaluation on equal parts 2, 3 and 4 hop questions. For each evaluation, we took a random subset of 100 MuSiQue questions. Manual examination of the questions, however, revealed significant issues with the question spanning from incorrect answers to impossible connections. To filter out these unanswerable questions, we ran a system with exact context three times on each question and if it never produced the expected response the question was removed. The results presented below are based on the accuracy over the remaining&nbsp;<strong>answerable questions<\/strong>.<\/p>\n\n\n\n<h3 id='performance-on-2-hop-questions'  id=\"boomdevs_10\" class=\"wp-block-heading\" id=\"performance-on-2-hop-questions\">Performance on 2-hop questions<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">As seen in the results below, adding an ontology-based knowledge graph yields immediate dividends.&nbsp;<a href=\"https:\/\/gws-sso-test.graphwise.ai\/graphwise-graphrag\/\" target=\"_blank\" rel=\"noreferrer noopener\">Semantic GraphRAG<\/a>&nbsp;manages to answer about&nbsp;<strong>95%<\/strong>&nbsp;of answerable questions, creating a clear separation from standard HippoRAG (86%) and a massive improvement over traditional Vector RAG (79%). The \u201cLLM w\/o RAG\u201d category (71%) is also included to demonstrate the ability of LLMs to answer these questions with general world knowledge- something only possible because MuSiQue is a public dataset and therefore part of their training corpora.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/2-hop-updated-chart.png\"><\/a><a href=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/2-hop-updated-chart.png\"><\/a><\/p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5c4c2bde19f&quot;}\" data-wp-interactive=\"core\/image\" data-wp-key=\"6a5c4c2bde19f\" class=\"wp-block-image size-large is-resized wp-lightbox-container\"><img decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/2-hop-updated-chart.png\" alt=\"\" style=\"width:650px\"\/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\tdata-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.thisImage.buttonRight\"\n\t\t\tdata-wp-style--top=\"state.thisImage.buttonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><figcaption class=\"wp-element-caption\"><em>Figure 3. Results on 2-hop questions<\/em><\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In this experiment our approach answered, on average, 69 of the 73 answerable questions correctly giving it a consistent advantage over HippoRAG.<\/p>\n\n\n\n<h3 id='performance-on-multi-hop-questions'  id=\"boomdevs_11\" class=\"wp-block-heading\" id=\"performance-on-multi-hop-questions\">Performance on multi-hop questions&nbsp;<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">When testing across the full spectrum of available question complexity, the distinction between approaches grows clearer and Semantic GraphRAG demonstrates superior resilience. While Vector RAG and HippoRAG plateau near 75%, Semantic GraphRAG increases its dominant lead to&nbsp;<strong>86%<\/strong>. This suggests that as reasoning chains get longer, the structured \u201chighway\u201d provided by the knowledge graph becomes increasingly critical for maintaining the trail of evidence.<\/p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a5c4c2bde8c3&quot;}\" data-wp-interactive=\"core\/image\" data-wp-key=\"6a5c4c2bde8c3\" class=\"wp-block-image size-large is-resized wp-lightbox-container\"><img decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/2-3-4-hop-updated-chart.png\" alt=\"\" style=\"width:650px\"\/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\tdata-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.thisImage.buttonRight\"\n\t\t\tdata-wp-style--top=\"state.thisImage.buttonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><figcaption class=\"wp-element-caption\"><em>Figure 4. Results on equal parts 2, 3, and 4-hop questions<\/em><\/figcaption><\/figure>\n\n\n\n<div class=\"wp-block-group blog-info-box is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-premium-icon premium-icon premium-icon-601f026832d1 premium-icon__container is-style-var1-icon\" data-icontype=\"icon\" id=\"premium-icon-601f026832d1\"><div class=\"premium-icon-container premium-icon-class-css\" style=\"border-style:none;box-shadow:0px 0px 10px transparent \"><div class=\"premium-icon-content premium-icon__none\"><div style=\"display:inline-flex;justify-content:center;align-items:center;cursor:default\" class=\"premium-icon premium-icon-type fas_lightbulb icon-type-fa\"><svg style=\"display:inline-block;vertical-align:middle\" viewBox=\"0 0 384 512\" height=\"24\" width=\"24\" fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M272 428v28c0 10.449-6.68 19.334-16 22.629V488c0 13.255-10.745 24-24 24h-80c-13.255 0-24-10.745-24-24v-9.371c-9.32-3.295-16-12.18-16-22.629v-28c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12zm-143.107-44c-9.907 0-18.826-6.078-22.376-15.327C67.697 267.541 16 277.731 16 176 16 78.803 94.805 0 192 0s176 78.803 176 176c0 101.731-51.697 91.541-90.516 192.673-3.55 9.249-12.47 15.327-22.376 15.327H128.893zM112 176c0-44.112 35.888-80 80-80 8.837 0 16-7.164 16-16s-7.163-16-16-16c-61.757 0-112 50.243-112 112 0 8.836 7.164 16 16 16s16-7.164 16-16z\"><\/path><\/svg><\/div><\/div><\/div><\/div>\n\n\n\n<h2 id='in-a-nutshell'  id=\"boomdevs_12\" class=\"wp-block-heading\" id=\"h-in-a-nutshell\">In a nutshell<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">People don\u2019t have time to browse, interpret, or reconcile conflicting sources. They need to pull answers, not documents, and they need to be able to set the context themselves. That said, content operations are to be centred around designing content for retrieval, not publication. They also need to be done with a view to capturing meaning in an explicit way before worrying about format. Last but not least we should be treating definitions and other cornerstone content chunks as first-class content assets.<\/p>\n<\/div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">In practice of the 69 answerable questions here, Vector RAG and HippoRAG answer 51-52 questions on average while Semantic GraphRAG averages 59.<\/p>\n\n\n\n<h2 id='insights'  id=\"boomdevs_13\" class=\"wp-block-heading\" id=\"insights\">Insights<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Our deep dive into the MuSiQue dataset revealed a significant noise floor: many questions in the benchmark itself are flawed or ambiguous. In fact, across a variety of question samples, we established that about a third of the questions are not answerable \u2014 usually the expected answers are wrong or impossible to derive. An example of the latter is: \u201cWhat is the administrative territorial entity that contains the location of Eric Marcus?\u201d. The expected answer in the dataset is: \u201cKUAT-TV 6\u201d, which is a TV station, not an administrative territorial entity. An example of the former is: \u201cIn which country was the tournament held?\u201d, which makes no sense without specifying which tournament the question is about.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, benchmarks like MuSiQue fail to capture the true \u201cpower\u201d of Semantic GraphRAG implemented via natural language querying (NLQ),\u2014&nbsp;<strong>Aggregation<\/strong>. Standard RAG and GraphRAG systems are retrieval engines, not calculation engines. If you ask, \u201c<em>How many genes are associated with ALS?<\/em>\u201d or \u201c<em>Which gene is linked to the highest number of Alzheimer\u2019s symptoms?<\/em>\u201c, standard systems fail. They attempt to retrieve text chunks and rely on the LLM to count. LLMs are notoriously poor at counting and the required context often exceeds token limits.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Semantic GraphRAG solves this deterministically. It doesn\u2019t ask the LLM to count. It generates a SPARQL query (for example,&nbsp;<code>SELECT COUNT(?gene)...<\/code>). The result is a single, perfectly accurate number returned instantly. This ability to switch between \u201creading\u201d (RAG) and \u201ccalculating\u201d (SPARQL) is a paradigm shift for complex data analysis. This capability is referred to as NLQ, where natural language queries are converted to queries to a database engine.<\/p>\n\n\n\n<h2 id='further-improvements'  id=\"boomdevs_14\" class=\"wp-block-heading\" id=\"further-improvements\">Further improvements<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We have some ideas for further improvements that can go in the following directions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Q&amp;A pairs of MuSiQue are designed to be answered via document chunks, without NLQ. We are developing a new benchmark designed specifically to test these capabilities. We aim to move beyond simple retrieval metrics and demonstrate what is possible when you treat your data as a true knowledge graph.<\/li>\n\n\n\n<li>Semantic GraphRAG can be improved further, using more advanced ontology and\u00a0<a href=\"https:\/\/gws-sso-test.graphwise.ai\/fundamentals\/what-is-entity-linking\/\" target=\"_blank\" rel=\"noreferrer noopener\">entity linking<\/a>\u00a0techniques. One direction would be to experiment using an existing ontology, for example,\u00a0<a href=\"http:\/\/schema.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Schema.ORG<\/a>\u00a0or the ontology of Wikidata. This will save processing time (no need to generate an ontology). It will also make text-to-SPARQL generation faster and cheaper, because there will be no need to pass the ontology in the prompt \u2013 all major LLMs do know these popular ontologies.<\/li>\n\n\n\n<li>Personalized PageRank can be implemented directly in\u00a0<a href=\"https:\/\/gws-sso-test.graphwise.ai\/components\/graphdb\/\" target=\"_blank\" rel=\"noreferrer noopener\">Graphwise GraphDB<\/a>, which will void the need for a separate associative graph, stored in a separate engine.<\/li>\n<\/ul>\n\n\n\n<h2 id='conclusion'  id=\"boomdevs_15\" class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">By fusing the neurobiological inspiration of HippoRAG with the rigid structure of ontologies and semantic knowledge graphs, we have created a system that offers the best of both worlds. We retain the associative, \u201chuman-like\u201d memory retrieval of HippoRAG, while injecting the logical precision required for multi-hop reasoning and complex aggregations.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The results are clear: structure matters. When you give an LLM a map (the ontology) and structured data (the knowledge graph) rather than just a pile of documents, it doesn\u2019t just retrieve better \u2014 it reasons better.<\/p>\n\n\n\n<div class=\"hs-cta-embed hs-cta-simple-placeholder hs-cta-embed-193575182687\"\n  style=\"max-width:100%; max-height:100%; width:700px;height:266.515625px\" data-hubspot-wrapper-cta-id=\"193575182687\">\n  <a href=\"https:\/\/cta-service-cms2.hubspot.com\/web-interactives\/public\/v1\/track\/redirect?encryptedPayload=AVxigLI2Va9vRmKnJGBiz%2BY8TJTe4xeTC%2Bd9lgCZqmVrhgL%2BV6R9ib9P5jDlDFFmUIiR5gMZRq43S4DBCfO4obdN8mKEZUls7l0dQuGFHw%2Fa1detIduw2esvZQy6JsXbAa4%2FPnDwjxbSQUU7BuH4Wb9D6X3MsG5nTV1%2FSp1LaEsaIhWXUqMwrKo%3D&#038;webInteractiveContentId=193575182687&#038;portalId=5619976\" target=\"_blank\" rel=\"noopener\" crossorigin=\"anonymous\">\n    <img decoding=\"async\" alt=\"Start exploring Graphwise Sandbox!\" loading=\"lazy\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/5619976\/interactive-193575182687.png\" style=\"height: 100%; width: 100%; object-fit: fill\"\n      onerror=\"this.style.display='none'\" \/>\n  <\/a>\n<\/div>\n","protected":false},"excerpt":{"rendered":"Read about how an ontology-based knowledge graph boosts the multi-hop Q&#038;A accuracy of one of the leading schemaless GraphRAG systems","protected":false},"author":10,"featured_media":246099,"template":"","meta":{"_acf_changed":false,"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false},"categories":[23,42,21],"tags":[],"persona":[],"resource-category":[17],"blog-category":[],"ppma_author":[379,98,112],"class_list":["post-245885","blog-post","type-blog-post","status-publish","has-post-thumbnail","hentry","category-graph-database","category-graph-modeling","category-graph-rag","resource-category-blog-post"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.3 (Yoast SEO v27.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Graph Center of Excellence and Data Governance<\/title>\n<meta name=\"description\" content=\"In part 1 of this blog series, read how the Graph Center of Excellence propels you from data silos to data governance.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"From Retrieval to Reasoning: Enhancing HippoRAG with Graph-Based Semantics\" \/>\n<meta property=\"og:description\" content=\"In part 1 of this blog series, read how the Graph Center of Excellence propels you from data silos to data governance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/\" \/>\n<meta property=\"og:site_name\" content=\"Graphwise\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-10T03:38:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2025\/02\/graph-center-excellence-data-ready.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1000\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"5\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/\",\"url\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/\",\"name\":\"Graph Center of Excellence and Data Governance\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/AI-in-action-series.png\",\"datePublished\":\"2026-02-11T10:12:04+00:00\",\"dateModified\":\"2026-07-10T03:38:24+00:00\",\"description\":\"In part 1 of this blog series, read how the Graph Center of Excellence propels you from data silos to data governance.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/#primaryimage\",\"url\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/AI-in-action-series.png\",\"contentUrl\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/AI-in-action-series.png\",\"width\":2000,\"height\":1000},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog Posts\",\"item\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Blog Post Divi template &#8211; duplicate me!!!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/\",\"name\":\"Graphwise\",\"description\":\"AI THRIVES ON WHOLE DATA\",\"publisher\":{\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/#organization\",\"name\":\"Graphwise\",\"url\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/graphwise-logo-horizontal-slogan.svg\",\"contentUrl\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/graphwise-logo-horizontal-slogan.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"Graphwise\"},\"image\":{\"@id\":\"https:\\\/\\\/gws-sso-test.graphwise.ai\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/graphwise\\\/\"],\"description\":\"Graphwise enables organizations to unlock ROI for enterprise AI by delivering the most comprehensive and trusted industry solution in the field of knowledge graphs and semantic AI technologies. As enterprises pour millions into AI investment, Graphwise delivers the critical knowledge graph infrastructure to ensure enterprises are ready to realize the technology\u2019s full potential, is trusted, and can be implemented at scale. Graphwise, which is the result of the merger between tech visionaries Ontotext and Semantic Web Company, has over 200 employees worldwide, with offices located across North America, Europe and APAC.\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Graph Center of Excellence and Data Governance","description":"In part 1 of this blog series, read how the Graph Center of Excellence propels you from data silos to data governance.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"de_DE","og_type":"article","og_title":"From Retrieval to Reasoning: Enhancing HippoRAG with Graph-Based Semantics","og_description":"In part 1 of this blog series, read how the Graph Center of Excellence propels you from data silos to data governance.","og_url":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/","og_site_name":"Graphwise","article_modified_time":"2026-07-10T03:38:24+00:00","og_image":[{"width":2000,"height":1000,"url":"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2025\/02\/graph-center-excellence-data-ready.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"5\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/","url":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/","name":"Graph Center of Excellence and Data Governance","isPartOf":{"@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/#primaryimage"},"image":{"@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/#primaryimage"},"thumbnailUrl":"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png","datePublished":"2026-02-11T10:12:04+00:00","dateModified":"2026-07-10T03:38:24+00:00","description":"In part 1 of this blog series, read how the Graph Center of Excellence propels you from data silos to data governance.","breadcrumb":{"@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/#primaryimage","url":"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png","contentUrl":"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png","width":2000,"height":1000},{"@type":"BreadcrumbList","@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/from-retrieval-to-reasoning-enhancing-hipporag-with-graph-based-semantics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gws-sso-test.graphwise.ai\/de\/"},{"@type":"ListItem","position":2,"name":"Blog Posts","item":"https:\/\/gws-sso-test.graphwise.ai\/de\/blog\/"},{"@type":"ListItem","position":3,"name":"Blog Post Divi template &#8211; duplicate me!!!"}]},{"@type":"WebSite","@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/#website","url":"https:\/\/gws-sso-test.graphwise.ai\/de\/","name":"Graphwise","description":"AI THRIVES ON WHOLE DATA","publisher":{"@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gws-sso-test.graphwise.ai\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/#organization","name":"Graphwise","url":"https:\/\/gws-sso-test.graphwise.ai\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/#\/schema\/logo\/image\/","url":"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2024\/10\/graphwise-logo-horizontal-slogan.svg","contentUrl":"https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2024\/10\/graphwise-logo-horizontal-slogan.svg","width":"1024","height":"1024","caption":"Graphwise"},"image":{"@id":"https:\/\/gws-sso-test.graphwise.ai\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/graphwise\/"],"description":"Graphwise enables organizations to unlock ROI for enterprise AI by delivering the most comprehensive and trusted industry solution in the field of knowledge graphs and semantic AI technologies. As enterprises pour millions into AI investment, Graphwise delivers the critical knowledge graph infrastructure to ensure enterprises are ready to realize the technology\u2019s full potential, is trusted, and can be implemented at scale. Graphwise, which is the result of the merger between tech visionaries Ontotext and Semantic Web Company, has over 200 employees worldwide, with offices located across North America, Europe and APAC.","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}}]}},"pbg_featured_image_src":{"full":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png",2000,1000,false],"thumbnail":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-150x150.png",150,150,true],"medium":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-300x150.png",300,150,true],"medium_large":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-768x384.png",768,384,true],"large":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-1024x512.png",1024,512,true],"1536x1536":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-1536x768.png",1536,768,true],"2048x2048":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png",2000,1000,false],"et-pb-post-main-image":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-400x250.png",400,250,true],"et-pb-post-main-image-fullwidth":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-1080x675.png",1080,675,true],"et-pb-portfolio-image":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-400x284.png",400,284,true],"et-pb-portfolio-module-image":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-510x382.png",510,382,true],"et-pb-portfolio-image-single":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-1080x540.png",1080,540,true],"et-pb-gallery-module-image-portrait":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-400x516.png",400,516,true],"et-pb-post-main-image-fullwidth-large":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png",2000,1000,false],"et-pb-image--responsive--desktop":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-1280x640.png",1280,640,true],"et-pb-image--responsive--tablet":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-980x490.png",980,490,true],"et-pb-image--responsive--phone":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series-480x240.png",480,240,true],"crp_thumbnail":["https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/AI-in-action-series.png",150,75,false]},"pbg_author_info":{"display_name":"Gergana Petkova","author_link":"https:\/\/gws-sso-test.graphwise.ai\/de\/author\/petkovag\/","author_img":"<img alt='Aleksis Datseris' src='https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/Aleksis_Photo.jpg' srcset='https:\/\/gws-sso-test.graphwise.ai\/wp-content\/uploads\/2026\/02\/Aleksis_Photo.jpg 2x' class='avatar avatar-128 photo avatar-default' height='128' width='128' decoding='async'\/>"},"pbg_comment_info":" No Comments","pbg_excerpt":"Read about how an ontology-based knowledge graph boosts the multi-hop Q&A accuracy of one of the leading schemaless GraphRAG systems","_links":{"self":[{"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/blog-post\/245885","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/blog-post"}],"about":[{"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/types\/blog-post"}],"author":[{"embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/users\/10"}],"version-history":[{"count":17,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/blog-post\/245885\/revisions"}],"predecessor-version":[{"id":250037,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/blog-post\/245885\/revisions\/250037"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/media\/246099"}],"wp:attachment":[{"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/media?parent=245885"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/categories?post=245885"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/tags?post=245885"},{"taxonomy":"persona","embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/persona?post=245885"},{"taxonomy":"resource-category","embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/resource-category?post=245885"},{"taxonomy":"blog-category","embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/blog-category?post=245885"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/gws-sso-test.graphwise.ai\/de\/wp-json\/wp\/v2\/ppma_author?post=245885"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}