Search

Search IconIcon to open search

GraphRAG

Last updatedUpdated: by Jakub Žovák · 2 min read

Properties
created Empty
modified 26.07.2026, 13:49
published Empty
sources Empty
topics GraphRAG
authors Jakub
ai-assisted Yes
  • GraphRAG represents new approach for constructing the knowledge base for the RAG application. It can improve the quality of the output of the RAG application. But this come at a significant cost. The goal of this task is to explore whether the improvement in quality justifies the cost and whether we can use this approach in our projects.

# Approaches

# Resources

  • Papers:
    • Graph Retrieval-Augmented Generation: A Survey
      • https://dl.acm.org/doi/10.1145/3777378
      • https://github.com/pengboci/GraphRAG-Survey
      • The authors formalize the GraphRAG workflow into three core stages: Graph-Based Indexing (constructing and organizing graph databases from open knowledge graphs or self-constructed data), Graph-Guided Retrieval (extracting relevant graph elements like nodes, triplets, paths, or subgraphs using non-parametric, LM-based, or GNN-based retrievers), and Graph-Enhanced Generation (converting retrieved graph structures into formats processable by language models). The survey systematically categorizes existing methodologies across these stages, examines retrieval paradigms (once, iterative, and multi-stage), discusses training strategies, and analyzes downstream applications spanning question answering, recommendation systems, and domain-specific tasks in healthcare, finance, and e-commerce.
    • HybridRAG
    • GraphRAG
  • Existing tools and frameworks for leveraging knowledge graphs in RAG:
  • GraphRAG Website
  • Good overview video of GraphRAG
  • GraphRAG course

# Domain-Specific GraphRAGs