Artificial Intelligence

GraphRAG

A RAG approach that uses knowledge graphs rather than vector databases for retrieval. It combines graph traversal with LLM generation to answer questions requiring multi-hop reasoning.

Why It Matters

GraphRAG excels at questions requiring connecting multiple pieces of information — 'Who manages the team that built the product mentioned in yesterday's support ticket?'

Example

Querying a knowledge graph to find: ticket → product → team → manager, then using the LLM to generate a natural language answer from the traversed path.

Think of it like...

Like a detective following a chain of clues — each clue points to the next, and the full chain reveals the answer that no single document contains.

Related Terms