From Local to Global: A Graph RAG Approach to Query-Focused Summarization
Darren EdgeHa TrinhNewman ChengJoshua BradleyA. ChaoApurva N. ModySteven TruittJonathan Larson
Introduces GraphRAG, a framework that combines knowledge graph extraction and hierarchical community summarization to answer corpus-level sensemaking questions that defeat standard retrieval-augmented generation.
Modern organizations increasingly rely on large language models to answer questions using private or domain-specific document collections. While conventional retrieval systems excel at fetching isolated facts from a text corpus, they fail when users ask broad, high-level sensemaking questions such as identifying major themes or summarizing global trends. At the same time, traditional text summarization techniques do not scale effectively to the large volumes of data indexed by modern systems.
The article introduces GraphRAG, a graph-based framework designed to perform global query-focused summarization over large, private text collections. The authors set out to demonstrate that building a hierarchical graph index enables language models to answer broad sensemaking queries with greater comprehensiveness and diversity than conventional retrieval-augmented generation methods.
To achieve this, the approach first uses a language model to extract key entities, relationships, and claims across text chunks to build a knowledge graph. It then applies community detection algorithms to group related entities hierarchically and generates pre-computed summaries for each community. When a user submits a global query, the system generates intermediate answers from these community summaries in parallel and synthesizes them into a final global response. The authors evaluated this method against conventional semantic search and direct text summarization across two representative 1-million-token datasets (podcast transcripts and news articles) using both automated language model evaluators and factual claim extraction metrics.
The article reports several key findings. First, GraphRAG substantially outperformed conventional retrieval methods, achieving win rates between 72% and 83% for answer comprehensiveness and 62% to 82% for answer diversity. Second, validation through factual claim extraction confirmed that GraphRAG generated significantly more verifiable factual claims per answer (averaging 31 to 34 claims) compared to conventional retrieval (averaging 25 to 26 claims). Third, using high-level root community summaries reduced token consumption by 97% compared to whole-text summarization while still retaining significant advantages over conventional retrieval. Finally, while conventional retrieval produced more direct and concise answers, GraphRAG provided far greater depth and breadth across disparate topics.
These findings indicate that integrating hierarchical knowledge graphs into retrieval architectures resolves a major blind spot in generative AI. By structuring unstructured text into modular community summaries, organizations can perform corpus-wide intelligence analysis, thematic discovery, and high-level synthesis without suffering from context window limits or the prohibitive token costs of brute-force summarization.
Decision-makers implementing generative AI over large document repositories should consider deploying graph-based indexing when user workflows require high-level summaries and broad discovery. For cost-sensitive applications with iterative querying, the authors suggest utilizing root-level community summaries to maintain high performance at a fraction of the operational token cost. Future development should explore hybrid systems that combine local semantic search with hierarchical community drill-down capabilities.
Readers should note that the evaluation was conducted primarily on two datasets in the 1-million-token range using GPT-4, meaning performance may vary across other domains or smaller language models. Furthermore, because generated summaries synthesize abstract themes across multiple documents, organizations should maintain clear AI disclosure policies and verify critical claims to mitigate the risk of model fabrication.
- Paper: Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks, Patrick Lewis et al. (2020). This seminal paper introduces the retrieval-augmented generation (RAG) framework that GraphRAG directly extends and benchmarks against for question answering.
- Paper: Retrieval-Augmented Generation for Large Language Models: A Survey, Yunfan Gao et al. (2023). This survey provides a comprehensive taxonomy of standard and advanced RAG architectures, contextualizing the limitations GraphRAG aims to solve.
- Paper: A Survey on Knowledge Graphs: Representation, Acquisition, and Applications, Shaoxiong Ji et al. (2020). This survey details knowledge graph representations and entity-relation extraction methods foundational to GraphRAG's graph-indexing pipeline.
- Paper: G-Eval: NLG Evaluation using GPT-4 with Better Human Alignment, Yang Liu et al. (2023). This work establishes LLM-based evaluation protocols and scoring criteria that inform GraphRAG's assessment of comprehensiveness and diversity.
- Paper: Lost in the Middle: How Language Models Use Long Contexts, Nelson F. Liu et al. (2024). This study demonstrates how large language models struggle to utilize information located in the middle of long contexts, motivating GraphRAG's structured summarization approach.
- Paper: Selective Forgetting: A Graph-Based Memory Framework for Long-Term LLM Agents, Theo Rusu et al. (2026). This research investigates graph-structured memory versus flat RAG in long-term LLM agent contexts, extending the practical application and maintenance of graph indexes.
- Paper: Memory is Reconstructed, Not Retrieved: Graph Memory for LLM Agents, Shuo Ji et al. (2026). This paper expands graph-augmented retrieval into dynamic multi-step agent reasoning through interactive graph traversal.
- Paper: On the Theoretical Limitations of Embedding-Based Retrieval, Orion Weller et al. (2026). This work establishes theoretical bounds on dense vector retrieval capacity, explaining mathematically why modular and graph-based indexing approaches become necessary at corpus scale.
- Paper: Idea2Story: An Automated Pipeline for Transforming Research Concepts into Complete Scientific Narratives, Tengyue Xu et al. (2026). This paper applies offline knowledge-graph construction and structured narrative retrieval to the scientific discovery domain.
