Upgrade to Pro — share decks privately, control downloads, hide ads and more …

GraphRAG: Data with Context

GraphRAG: Data with Context

In this connected world, traditional data stores often make it difficult to find valuable relationships. By making them a key component of the model, contextualizing a set of data becomes incredibly simple.
In this session, we will walk through what a graph database is and how it can transform your applications and data. Then, we will look at how graphs are lending their strengths to the AI industry through vectors and GraphRAG. Live demos will show developers how to interact with graph data and use it in technical systems.
Join us to learn how graph databases are used to improve the data world and help developers easily extract/import connected data!
Code: https://github.com/JMHReif/ai-pet-travel

Jennifer Reif

April 02, 2025
Tweet

More Decks by Jennifer Reif

Other Decks in Technology

Transcript

  1. Who is Jennifer Reif? Developer Advocate, Neo4j • Continuous learner

    • Technical speaker • Tech blogger, podcaster • Other: geek Jennifer Reif [email protected] @JMHReif github.com/JMHReif jmhreif.com linkedin.com/in/jmhreif
  2. What is a graph? Degree Degree Company Jennifer Jacob School

    ATTENDED ATTENDED W ORKED_FOR WORKED_FOR EN RO LLED_IN ENROLLED_IN
  3. What is a graph? Adrian Degree Degree Company Jennifer Jacob

    School ATTENDED ATTENDED W ORKED_FOR WORKED_FOR EN RO LLED_IN ENROLLED_IN ENROLLED_IN Degree C O M PLETED COM PLETED
  4. What is a graph? Person Degree Degree Company Person Person

    School ATTENDED ATTENDED W ORKED_FOR WORKED_FOR EN RO LLED_IN ENROLLED_IN ENROLLED_IN Degree C O M PLETED COM PLETED Edward Jones Jacob Jennifer SIUE Music CMIS CS Adrian
  5. What is a graph? Answers through relationships • How many

    coworkers shared classes/degrees? • What are common degree journeys? • How many alumni re- enroll for higher degrees? • Who else went to a school and works for company? Person Degree Degree Company Person Person School ATTENDED ATTENDED W ORKED_FOR WORKED_FOR EN RO LLED_IN ENROLLED_IN ENROLLED_IN Degree C O M PLETED COM PLETED Edward Jones Jacob Jennifer SIUE Music CMIS CS Adrian
  6. Nodes (vertices) Objects or entities • Can have labels •

    May have properties Person Degree Degree Company Person Person School Degree Edward Jones Jacob Jennifer SIUE Music CMIS CS Adrian
  7. Relationships (edges) Connect entities • Must have type (label) •

    Must have direction • May have properties Person Degree Degree Company Person Person School ATTENDED ATTENDED W ORKED_FOR WORKED_FOR EN RO LLED_IN ENROLLED_IN ENROLLED_IN Degree C O M PLETED COM PLETED Edward Jones Jacob Jennifer SIUE Music CMIS CS Adrian
  8. Other use cases • Fraud detection • Identity and access

    management • Recommendations • Supply chain • Logistics
  9. Cypher GQL-compliant • Functional and visual • Based on ASCII

    art • Declarative • Focus on patterns A B LIKES MATCH (A)-[:LIKES]->(B)
  10. Cypher: write All about patterns Jennifer Neo4j WORKS_FOR CREATE (:Person

    { name: ‘Jennifer’}) -[:WORKS_FOR]-> (:Company { name: ‘Neo4j’}) NODE PROPERTY NODE PROPERTY LABEL LABEL
  11. Cypher: read All about patterns Jennifer Neo4j WORKS_FOR MATCH (:Person

    { name: ‘Jennifer’} ) -[:WORKS_FOR]-> ( whom ) RETURN whom
  12. A knowledge graph is a specific implementation of a graph

    database, where information is integrated from many different sources, representing the inherent knowledge of a particular domain.
  13. Knowledge graphs are • Optimized for relationships • Well suited

    for complex, interconnected data • Schema-optional • Can readily adapt/evolve as they grow
  14. AI

  15. Throw an LLM at it Doesn’t often work • LLM

    strengths: • human-consumable data • probabilistic answers • LLM weaknesses: • complex logic • recognizing nuances • Solo LLM = great -> integrated LLM = more great?
  16. RAG architecture • Retrieval • Data retrieved from external source

    • Augmented • Augments response with facts • Generation • Response in natural language Prompt + Relevant Information LLM API LLM
 Chat API User Database Search Prompt Response Relevant Results / Documents 2 3 1 Database
  17. Lexical to Semantic search • Keyword searches aren’t enough •

    Data dictionaries are complex and limited • How do we search relevant/contextual info?
  18. Embeddings / Vectors Convert data to a point in space

    • Series of numbers • 100s or 1000s of dimensions • Dimension = interesting feature / characteristic
  19. Vectors in the technical realm Kings and Queens king −

    man + woman ≈ queen king man wom an 1 king man wom an 2 queen? 3
  20. How do we search the vectors? Similarity search • Expensive

    queries (compare to every vector) • Approximate nearest neighbor (k-ANN) • Example: Library • Book classi fi cation - genre vs location of plot • Smaller search set = smaller retrieval time! Photo by Martin Adams on Unsplash
  21. Vector-only RAG Similarity is insu ff i cient for rich

    reasoning/explainability • Missing context, relationships • Vector similarity != relevance • Lack explainability
  22. GraphRAG Graph DB as a data source • More relevant

    data to provide as context • Quality connected data, higher accuracy • Explainability, veri fi ability
  23. Explainable AI Why graph with GenAI? • How did the

    LLM get this answer? • Graphs: • Incorporating siloed data into result • Add extra context/related info to graph • Better veri fi cation through understandable format Photo by No Revisions on Unsplash
  24. Nothing is a silver bullet LLM is (of sorts) mind

    of its own • Can’t guarantee a consistent answer • Prompt engineering • Context window limits
  25. Resources • Github repository (today’s code): github.com/JMHReif/ai-pet-travel • GraphAcademy LLM

    courses: graphacademy.neo4j.com/categories/llms/ • Docs for Spring AI: docs.spring.io/spring-ai/reference/api/vectordbs/neo4j.html • Knowledge graph ebook: https://neo4j.com/whitepapers/developers-guide-how- to-build-knowledge-graph/ Jennifer Reif [email protected] @JMHReif github.com/JMHReif jmhreif.com linkedin.com/in/jmhreif