IT Brief UK - Technology news for CIOs & IT decision-makers
Isometric engineer graph database central node data retrieval

Memgraph unveils Atomic GraphRAG to simplify LLM data

Thu, 19th Feb 2026

Memgraph has launched Atomic GraphRAG, a feature that packages graph-based retrieval-augmented generation workflows into a single database query, as companies look for more structured ways to connect large language models with internal data.

GraphRAG combines retrieval and generation with a graph model of data and relationships. Vendors and developers use it for question answering and other search-like tasks that require an LLM to access relevant context from business systems, documents, and knowledge graphs.

Memgraph reports that Atomic GraphRAG reduces the code required to build GraphRAG pipelines by more than 10x. It positions the change as a way to reduce the engineering effort required to select and maintain retrieval approaches across multiple data sources.

Single-query pipelines

Atomic GraphRAG builds an end-to-end GraphRAG pipeline into a single database query. Memgraph says it can include steps such as graph traversal, community detection, and context synthesis within the same execution layer.

The goal is to avoid "unfocused searches" and improve how an LLM selects information. In typical enterprise settings, the retrieval layer must narrow the search space across large datasets and multiple repositories. The quality of that context often determines the accuracy and relevance of the generated answer.

Graph database users often write custom code around the database to translate natural language into Cypher queries, combine vector search with graph traversal, or add query-focused summarisation across a document set.

Memgraph notes that these choices can add complexity because teams must choose a strategy, implement it, and maintain it over time. They can also tie the retrieval pipeline to scripts and infrastructure outside the database.

Less plumbing

Atomic GraphRAG uses Cypher, a graph query language, as the interface for defining scope and retrieval behaviour. Memgraph says users can define the search scope with a small number of Cypher lines, while the database optimises execution.

Memgraph positions the product as reducing the need for bespoke "plumbing" code to connect embeddings, vector databases, graph traversal logic, ranking, and summarisation. Many organisations have built these pipelines with Python services and orchestration layers.

Marko Budiselić, Memgraph's chief technology officer, said the company has focused on simplifying GraphRAG implementation for developers.

"For the last two years, our mission has been to make GraphRAG as simple to use as possible by allowing developers to express their entire retrieval strategy as a single native graph query - ideally, only one Cypher statement."

"With Atomic GraphRAG, we've reached a point where a single declarative query can reliably deliver the right context to an LLM, without brittle custom pipelines, maximising the value of enterprise LLM-based AI."

"That's because we're making GraphRAG directly consumable within the database. Instead of spending time managing Python scripts and infrastructure, you can push that logic into the database and focus on higher-value AI work much more quickly."