arXiv:2605.15109 Traversal Context: Agentic GraphRAG Must Document Visited-but-Uncited Entities for True Provenance
Why Neighborhoods Matter is a new arXiv paper published on May 14, 2026, by Riccardo Terrenzi, Maximilian von Zastrow, and Serkan Ayvaz (accepted for the IJCAI-ECAI 2026 Joint Workshop on GENAIK and NORA). The authors argue that agentic GraphRAG systems must treat citation faithfulness as a trajectory-level problem — true provenance covers not only cited evidence, but also visited-but-uncited entities that influence model reasoning.
This article was generated using artificial intelligence from primary sources.
Riccardo Terrenzi, Maximilian von Zastrow, and Serkan Ayvaz published a paper on arXiv on May 14, 2026, that challenges the traditional understanding of citation faithfulness in GraphRAG systems. The paper was accepted for the IJCAI-ECAI 2026 Joint Workshop on GENAIK and NORA (7 pages, 2 figures).
What does the paper specifically claim?
The authors propose a radical reframe: “citation faithfulness as a trajectory-level problem.” Current GraphRAG systems treat citations as “source support” — showing which entities in the knowledge graph they cite to support claims in a response. The paper argues that this is insufficient for true provenance because:
- During graph traversal, the agent visits many entities it ultimately does not cite
- Those uncited entities still influence model reasoning through the context window
- Without documenting the trajectory, the user sees only the final citations and cannot reconstruct how the answer was actually formed
The claim is provocative because it challenges the fundamental design assumption of most RAG systems: that transparency = showing which sources the system used.
What do the ablation experiments show?
The team conducts controlled ablation experiments isolating three variants:
- Removing cited evidence — what if we remove the entities the system cites?
- Removing uncited but visited evidence — what if we remove entities the system visited but did not cite?
- Masking entities — what if we replace entities with placeholder masks?
Key finding: cited evidence is often necessary (removing it “substantially changes answers and reduces accuracy”). But also: accurate answers can also depend on uncited traversal context. This means there is an equivalent of “hidden state” in the traversal trajectory that influences the outcome but does not appear in the final citation list.
What does “provenance over broader retrieval trajectory” mean?
The paper calls for “beyond source support toward provenance over the broader retrieval trajectory.” Practical implications for GraphRAG systems:
- Traversal logs as first-class objects — not just final citations, but the sequence of all visited entities with timestamps
- Visited-but-uncited marker — explicitly marking entities the agent visited but dismissed as “not worth citing”
- Influence weights — quantifying how much each visited entity influenced the final response
The approach is more complex but necessary for high-stakes domains — law, medicine, finance — where “how I arrived at the answer” must be reconstructable.
Position in the GraphRAG / agentic safety discourse
The paper fits into the trend of agentic safety research throughout May 2026: arXiv FATE (May 12, attack reduction), History Anchors (May 13, 91–98% unsafe shift), Sycophantic Consensus (May 15), Microsoft AI Delegation (May 15, 19–34% degradation), GraphFlow (May 15, formal verification). The Traversal Context paper adds a provenance dimension — not just “should the agent do X,” but “can we retroactively reconstruct how the agent arrived at X.”
The workshop venue (GENAIK + NORA) signals that the knowledge graph + AI community is seriously addressing questions that the mainstream LLM community often neglects. Open-ended chain-of-thought reasoning is opaque; graph traversal is inherently traceable — giving GraphRAG systems a unique opportunity for a provenance guarantee that pure LLM RAG cannot provide.
Frequently Asked Questions
- What does the paper specifically claim about citation faithfulness?
- The authors argue that citation faithfulness should be treated as a trajectory-level problem, not a source-support problem; specifically, agentic GraphRAG systems visit entities during traversal that they ultimately do not cite, but those uncited entities still influence model reasoning through the context window — without documenting that contextual traversal trajectory, the user cannot verify how the answer was actually formed.
- What methodology do they use for the demonstration?
- The team conducts controlled ablation experiments: they isolate, remove, and mask cited and uncited graph entities; results show that removing cited evidence significantly changes answers and reduces accuracy, but also that accurate answers can sometimes depend on uncited traversal context — which is empirical proof that source citations alone are not sufficient.