SlideShare a Scribd company logo
Neo4j Inc. All rights reserved 2023
Nouveautés Produits &
Graphes de Connaissances
Dr. Jesús Barrasa
Head of Solutions Architecture EMEA
1
Neo4j Inc. All rights reserved 2024
Recent features in Neo4j
Knowledge Graphs
2
Agenda
● Ubiquitous availability of Aura in all major
clouds: GCP, AWS, Azure
● Enterprise-ready Aura
﹣ SOC II Type 2 compliance
﹣ Better DevOps with AuraDB APIs
﹣ Easier RBAC configuration via Aura
console
﹣ Better observability with security log
forwarding (EAP) and Performance
metrics forwarding (EAP)
﹣ Private Link
Neo4j Inc. All rights reserved 2024
3
NEO4J AURA
2023 Key Capabilities
Customer Managed Keys (Encryption)
4 Neo4j Inc. All rights reserved 2024
What is it
Aura encrypts all data at transit
& rest by default.
Customer Managed Keys (CMK)
is an alternative way to protect
cloud data for security conscious
Enterprises, enabling customers
to manage their own keys for
encryption / decryption at disk on
Aura using Key Management
Services (KMS) from their Cloud
Service Provider.
Why it is important
Customers can protect their own
data, control access and have
the ability to revoke access,
even from Neo4j.
Customers can adhere to their
own stringent security policy
around access and key rotation,
on top of Aura’s Enterprise
grade default security and
compliance posture.
Customer Managed Keys (Encryption)
5
Neo4j Inc. All rights reserved 2024
6
Graph
Schema
Graph Schema: New constraints on
nodes, relationships and properties:
● Unique relationship property
● Relationship key
● Property data types
NEO4J 5.0 NEW CAPABILITIES
Database Enhancements
Neo4j Inc. All rights reserved 2024
7
Graph Schema / Graph Type
Neo4j Inc. All rights reserved 2024
8
The definition of the informational content of a schema
(or rather a graph type), comprising:
● A set of node type descriptors
(also known as a node type set).
● A set of edge type descriptors
(also known as an edge type set).
● A node type name dictionary that maps node type
names,
which are identifiers, to node types contained in the
node type set of this graph type descriptor such that
each node type name is mapped to a single node type.
● An edge type name dictionary that maps edge
type names,
which are identifiers, to edge types contained in the
edge type set of this graph type descriptor such that
each edge type name is mapped to a single edge type.
CREATE OR REPLACE GRAPH TYPE FraudDet
(a:AccountHolder { FirstName :: STRING!,
LastName :: STRING!,
UniqueId :: STRING! }
...) REQUIRE UniqueId IS KEY,
(c:CreditCard {AccountNumber :: STRING!,
Balance :: FLOAT!,
...} ...) REQUIRE AccountNumber IS KEY, ...
(a)-[:HAS_CARD ...]->(c),
(a)-[:HAS_ACCOUNT ...]->(b),...
CREATE OR REPLACE DATABASE foo
...
[WITH GRAPH TYPE FrautDet]
...
Neo4j Inc. All rights reserved 2024
9
QPP
Graph Pattern Matching: Improved
expressivity of graph navigation with
quantified path patterns,
a more powerful and performant syntax
to navigate and traverse your graph.
NEO4J 5.0 NEW CAPABILITIES
Database Enhancements
Neo4j Inc. All rights reserved 2024
10
NEO4J 5.0 NEW CAPABILITIES
Database Enhancements
Graph Pattern Matching Example → Fraud Rings
Neo4j Inc. All rights reserved 2024
11
QPP
MATCH path=(a:Account)-[:PERFORMS]->(first_tx)
((tx_i)-[:BENEFITS_TO]->(a_i)-[:PERFORMS]->(tx_j)
WHERE tx_i.date < tx_j.date
AND 0.80 <= tx_i.amount / tx_j.amount <= 1.00
){3,6}
(last_tx)-[:BENEFITS_TO]->(a)
WHERE size(apoc.coll.toSet([a]+a_i)) = size([a]+a_i)
RETURN path
👉 read more: https://bit.ly/pierre-qpp
Neo4j Inc. All rights reserved 2024
12
Parallel
Runtime
NEO4J 5.0 NEW CAPABILITIES
Parallel Runtime: Speed up analytical query up to 100x
Neo4j Inc. All rights reserved 2024
13
Parallel Runtime Speedup
Up to 100x faster analytical queries by adding CPU
cores
Neo4j Inc. All rights reserved 2024
14
More cores
Faster
Queries
Workspace Started Unifying Experience of our Graph Tools
Neo4j Inc. All rights reserved 2024
17
data importer
browser
bloom
Default experience in Aura for non-Enterprise,
Optional for Enterprise
Neo4j Browser → Query
Possible to connect to self-managed instances
Improvements in Workspace Query
Neo4j Inc. All rights reserved 2024
18
New Editor
Saved Cypher (fka Favorites)
Visualization Library from Bloom
Improvements in Bloom / Explore
Neo4j Inc. All rights reserved 2024
19
Data Slicer
Scene Actions
GDS Algos
Improved Search UX
Neo4j Inc. All rights reserved 2024
20
New in
Neo4j 5 -
recap
Neo4j
Product capabilities launched in 2023/2024
Neo4j Inc. All rights reserved 2024
21
● Parallel Runtime - faster analytical Queries
● Change Data Capture - better data integration
● Autonomous clustering & Fabric - limitless
scalability
● Graph Schema & constraints
● Backup with point-in-time recovery
● Incremental import
● Neo4j/AuraDB Ops Manager for managing
databases
● Aura Enterprise Database on all clouds
(AWS, GCP, Azure)
● SOC II Type 2 compliance, AuraDB APIs, RBAC
configuration
● Private Link & CMEK
● Log forwarding & performance metrics - better
observability
● Workspace - unified developer experience
● GraphQL Support & Simplified Drivers API
● Bloom support for GDS algorithms
● GDS Python API
● Knowledge Graph Embeddings
● Longest Path & Topological Sort Algorithm
● Vector Search & index
● Embedding APIs & LLM Models - Real Time
integration
● OpenAI + MS Azure OpenAI, VertexAI, AWS
Bedrock, Langchain, LlamaIndex etc. - Real
Time GenAI integration
Neo4j Inc. All rights reserved 2024
Graphes de
Connaissances
Le partenaire idéal des LLMs pour une IA fiable
22
Neo4j Inc. All rights reserved 2023
1. The Graph
2.The Knowledge
3.LLMS & GraphRAG
4.mini-Demo and
takeaways
23
Explore the connections in your data to
unlock deeper insights
25
The Property Graph: Simply Powerful
Employee City
Company
Nodes represent
objects (nouns)
Relationships are directional
Relationships connect nodes are
represent actions (verbs)
Relationships can have
properties (name/value pairs)
Nodes can have properties
(name/value pairs)
name: Amy Peters
date_of_birth: 1984-03-01
employee_ID: 1
:HAS_CEO
start_date: 2008-01-20
:LOCATED_IN
26
Cypher (GQL): Pattern Based
MATCH (p:Employee {employee_ID: 1})-[r:WORKS_AT*..3]-(c:Company)
RETURN c.name as company, count(*) as strength
ORDER BY strength DESC
Node
Pattern
Relationship
Pattern
Neo4j Inc. All rights reserved 2023
The Knowledge
The Semantic layer
28
Two “types” of semantics
Neo4j Inc. All rights reserved 2024
29
Two “types” of semantics
Neo4j Inc. All rights reserved 2024
30
Two “types” of semantics
Neo4j Inc. All rights reserved 2024
31
32
3
Knowledge graphs enable search with
explicit and implicit (vector) relationships
33 Neo4j Inc. All rights reserved 2024
A Knowledge Graph captures
key enterprise knowledge in
the form of entities and
relationships between them.
Some nodes in the graph have
properties with NL text
34
3
These property values get
embedded (transformed into a
numeric representation) and
added to a vector index to
enable vector-based semantic
search.
35
3
A semantic search on the
vector index returns the k
approximate nearest
neighbours to the search
concept (word, question,
image, etc)
36
3
Each result from the vector
search is “dereferenced“ to get
the corresponding node in the
graph and a subsequent graph
exploration finds semantically
related elements that enrich
and augment the final search
result.
37
3
Neo4j Inc. All rights reserved 2023
LLMs & GraphRAG
Reliable AI
38
Neo4j Inc. All rights reserved 2024
40
Grounding LLMs with KG: GraphRAG
© 2023 Neo4j, Inc. All rights reserved.
Demo time
Code:
https://github.com/jbarrasa/goingmeta/tree/main/session
24
Neo4j Inc. All rights reserved 2024
42
Demo: Q&A on document with rich internal structure
https://www.irishstatutebook.ie/eli/2015/si/516/made/en/p
df
Neo4j Inc. All rights reserved 2024
43
The document as a graph
Neo4j Inc. All rights reserved 2024
44
Merci
jesus.barrasa@neo4j.com

More Related Content

PDF
Markdown Monster 3.6.9 Free crack Download
PDF
Aiseesoft Video Converter Ultimate 10.9.6
PDF
Vivaldi Web Browser 6.8.3381.50 Crack Free
PPTX
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
PDF
Adobe Premiere Pro 2025 crack (v25.2.1.002)
PDF
Itop vpn crack Latest Version 2025 FREE Download
PDF
FL Studio Crack FREE Download link 2025 NEW Version
PDF
Autodesk Netfabb Ultimate 2025 free crack
Markdown Monster 3.6.9 Free crack Download
Aiseesoft Video Converter Ultimate 10.9.6
Vivaldi Web Browser 6.8.3381.50 Crack Free
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Adobe Premiere Pro 2025 crack (v25.2.1.002)
Itop vpn crack Latest Version 2025 FREE Download
FL Studio Crack FREE Download link 2025 NEW Version
Autodesk Netfabb Ultimate 2025 free crack

Similar to Atlantis Word Processor 4.4.5.1 Free Download (20)

PDF
Office(R)Tool Download crack (Latest 2025)
PDF
GRAPHISOFT ArchiCAD 28.1.1.4100 free crack
PDF
Auslogics Video Grabber Free 1.0.0.12 Free
PPTX
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
PDF
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
PPTX
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
PPTX
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
PDF
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
PDF
Neo4j: The path to success with Graph Database and Graph Data Science
PDF
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
PDF
Peek into Neo4j Product Strategy and Roadmap
PDF
The Neo4j Data Platform for Today & Tomorrow.pdf
PDF
Wondershare Repairit 5.5.9.9 Crack Free
PPTX
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
PDF
Neo4j Introduction Workshop for Partners
PDF
Training Series - Intro to Neo4j
PDF
Nordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
PDF
RadioBOSS Advanced 7.0.8 Free Download
PDF
Evernote 10.132.4.49891 With Crack free
PDF
Roadmap y Novedades de producto
Office(R)Tool Download crack (Latest 2025)
GRAPHISOFT ArchiCAD 28.1.1.4100 free crack
Auslogics Video Grabber Free 1.0.0.12 Free
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Copenhagen 2024 - Neo4j Vision and Roadmap.pptx
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j: The path to success with Graph Database and Graph Data Science
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Peek into Neo4j Product Strategy and Roadmap
The Neo4j Data Platform for Today & Tomorrow.pdf
Wondershare Repairit 5.5.9.9 Crack Free
Neo4j Product Updates & Knowledge Graphs at GraphSummit London 14 Nov 2023.pptx
Neo4j Introduction Workshop for Partners
Training Series - Intro to Neo4j
Nordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
RadioBOSS Advanced 7.0.8 Free Download
Evernote 10.132.4.49891 With Crack free
Roadmap y Novedades de producto
Ad

More from blouch120kp (6)

PDF
Final Cut Pro 11.1.0 for MacOS Free Download
PDF
Minitab Free Download crack (Latest 2025)
PDF
GRAPHISOFT ArchiCAD for MacOS Download
PDF
Windows 11 Professional 2025 with Office
PDF
Wondershare UniConverter for MacOS Download
PDF
Windows 11 Professional Preactivated 2025
Final Cut Pro 11.1.0 for MacOS Free Download
Minitab Free Download crack (Latest 2025)
GRAPHISOFT ArchiCAD for MacOS Download
Windows 11 Professional 2025 with Office
Wondershare UniConverter for MacOS Download
Windows 11 Professional Preactivated 2025
Ad

Recently uploaded (20)

PPTX
assetexplorer- product-overview - presentation
PDF
Complete Guide to Website Development in Malaysia for SMEs
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Digital Systems & Binary Numbers (comprehensive )
PDF
Nekopoi APK 2025 free lastest update
PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Design an Analysis of Algorithms II-SECS-1021-03
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PDF
Cost to Outsource Software Development in 2025
PPTX
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Patient Appointment Booking in Odoo with online payment
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PPTX
Transform Your Business with a Software ERP System
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
assetexplorer- product-overview - presentation
Complete Guide to Website Development in Malaysia for SMEs
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Digital Systems & Binary Numbers (comprehensive )
Nekopoi APK 2025 free lastest update
Autodesk AutoCAD Crack Free Download 2025
Design an Analysis of Algorithms I-SECS-1021-03
Design an Analysis of Algorithms II-SECS-1021-03
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
Cost to Outsource Software Development in 2025
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
How to Choose the Right IT Partner for Your Business in Malaysia
Patient Appointment Booking in Odoo with online payment
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Transform Your Business with a Software ERP System
Reimagine Home Health with the Power of Agentic AI​
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
CHAPTER 2 - PM Management and IT Context
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025

Atlantis Word Processor 4.4.5.1 Free Download

  • 1. Neo4j Inc. All rights reserved 2023 Nouveautés Produits & Graphes de Connaissances Dr. Jesús Barrasa Head of Solutions Architecture EMEA 1
  • 2. Neo4j Inc. All rights reserved 2024 Recent features in Neo4j Knowledge Graphs 2 Agenda
  • 3. ● Ubiquitous availability of Aura in all major clouds: GCP, AWS, Azure ● Enterprise-ready Aura ﹣ SOC II Type 2 compliance ﹣ Better DevOps with AuraDB APIs ﹣ Easier RBAC configuration via Aura console ﹣ Better observability with security log forwarding (EAP) and Performance metrics forwarding (EAP) ﹣ Private Link Neo4j Inc. All rights reserved 2024 3 NEO4J AURA 2023 Key Capabilities
  • 4. Customer Managed Keys (Encryption) 4 Neo4j Inc. All rights reserved 2024 What is it Aura encrypts all data at transit & rest by default. Customer Managed Keys (CMK) is an alternative way to protect cloud data for security conscious Enterprises, enabling customers to manage their own keys for encryption / decryption at disk on Aura using Key Management Services (KMS) from their Cloud Service Provider. Why it is important Customers can protect their own data, control access and have the ability to revoke access, even from Neo4j. Customers can adhere to their own stringent security policy around access and key rotation, on top of Aura’s Enterprise grade default security and compliance posture.
  • 5. Customer Managed Keys (Encryption) 5
  • 6. Neo4j Inc. All rights reserved 2024 6 Graph Schema
  • 7. Graph Schema: New constraints on nodes, relationships and properties: ● Unique relationship property ● Relationship key ● Property data types NEO4J 5.0 NEW CAPABILITIES Database Enhancements Neo4j Inc. All rights reserved 2024 7
  • 8. Graph Schema / Graph Type Neo4j Inc. All rights reserved 2024 8 The definition of the informational content of a schema (or rather a graph type), comprising: ● A set of node type descriptors (also known as a node type set). ● A set of edge type descriptors (also known as an edge type set). ● A node type name dictionary that maps node type names, which are identifiers, to node types contained in the node type set of this graph type descriptor such that each node type name is mapped to a single node type. ● An edge type name dictionary that maps edge type names, which are identifiers, to edge types contained in the edge type set of this graph type descriptor such that each edge type name is mapped to a single edge type. CREATE OR REPLACE GRAPH TYPE FraudDet (a:AccountHolder { FirstName :: STRING!, LastName :: STRING!, UniqueId :: STRING! } ...) REQUIRE UniqueId IS KEY, (c:CreditCard {AccountNumber :: STRING!, Balance :: FLOAT!, ...} ...) REQUIRE AccountNumber IS KEY, ... (a)-[:HAS_CARD ...]->(c), (a)-[:HAS_ACCOUNT ...]->(b),... CREATE OR REPLACE DATABASE foo ... [WITH GRAPH TYPE FrautDet] ...
  • 9. Neo4j Inc. All rights reserved 2024 9 QPP
  • 10. Graph Pattern Matching: Improved expressivity of graph navigation with quantified path patterns, a more powerful and performant syntax to navigate and traverse your graph. NEO4J 5.0 NEW CAPABILITIES Database Enhancements Neo4j Inc. All rights reserved 2024 10
  • 11. NEO4J 5.0 NEW CAPABILITIES Database Enhancements Graph Pattern Matching Example → Fraud Rings Neo4j Inc. All rights reserved 2024 11 QPP MATCH path=(a:Account)-[:PERFORMS]->(first_tx) ((tx_i)-[:BENEFITS_TO]->(a_i)-[:PERFORMS]->(tx_j) WHERE tx_i.date < tx_j.date AND 0.80 <= tx_i.amount / tx_j.amount <= 1.00 ){3,6} (last_tx)-[:BENEFITS_TO]->(a) WHERE size(apoc.coll.toSet([a]+a_i)) = size([a]+a_i) RETURN path 👉 read more: https://bit.ly/pierre-qpp
  • 12. Neo4j Inc. All rights reserved 2024 12 Parallel Runtime
  • 13. NEO4J 5.0 NEW CAPABILITIES Parallel Runtime: Speed up analytical query up to 100x Neo4j Inc. All rights reserved 2024 13
  • 14. Parallel Runtime Speedup Up to 100x faster analytical queries by adding CPU cores Neo4j Inc. All rights reserved 2024 14 More cores Faster Queries
  • 15. Workspace Started Unifying Experience of our Graph Tools Neo4j Inc. All rights reserved 2024 17 data importer browser bloom Default experience in Aura for non-Enterprise, Optional for Enterprise Neo4j Browser → Query Possible to connect to self-managed instances
  • 16. Improvements in Workspace Query Neo4j Inc. All rights reserved 2024 18 New Editor Saved Cypher (fka Favorites) Visualization Library from Bloom
  • 17. Improvements in Bloom / Explore Neo4j Inc. All rights reserved 2024 19 Data Slicer Scene Actions GDS Algos Improved Search UX
  • 18. Neo4j Inc. All rights reserved 2024 20 New in Neo4j 5 - recap
  • 19. Neo4j Product capabilities launched in 2023/2024 Neo4j Inc. All rights reserved 2024 21 ● Parallel Runtime - faster analytical Queries ● Change Data Capture - better data integration ● Autonomous clustering & Fabric - limitless scalability ● Graph Schema & constraints ● Backup with point-in-time recovery ● Incremental import ● Neo4j/AuraDB Ops Manager for managing databases ● Aura Enterprise Database on all clouds (AWS, GCP, Azure) ● SOC II Type 2 compliance, AuraDB APIs, RBAC configuration ● Private Link & CMEK ● Log forwarding & performance metrics - better observability ● Workspace - unified developer experience ● GraphQL Support & Simplified Drivers API ● Bloom support for GDS algorithms ● GDS Python API ● Knowledge Graph Embeddings ● Longest Path & Topological Sort Algorithm ● Vector Search & index ● Embedding APIs & LLM Models - Real Time integration ● OpenAI + MS Azure OpenAI, VertexAI, AWS Bedrock, Langchain, LlamaIndex etc. - Real Time GenAI integration
  • 20. Neo4j Inc. All rights reserved 2024 Graphes de Connaissances Le partenaire idéal des LLMs pour une IA fiable 22
  • 21. Neo4j Inc. All rights reserved 2023 1. The Graph 2.The Knowledge 3.LLMS & GraphRAG 4.mini-Demo and takeaways 23
  • 22. Explore the connections in your data to unlock deeper insights
  • 23. 25 The Property Graph: Simply Powerful Employee City Company Nodes represent objects (nouns) Relationships are directional Relationships connect nodes are represent actions (verbs) Relationships can have properties (name/value pairs) Nodes can have properties (name/value pairs) name: Amy Peters date_of_birth: 1984-03-01 employee_ID: 1 :HAS_CEO start_date: 2008-01-20 :LOCATED_IN
  • 24. 26 Cypher (GQL): Pattern Based MATCH (p:Employee {employee_ID: 1})-[r:WORKS_AT*..3]-(c:Company) RETURN c.name as company, count(*) as strength ORDER BY strength DESC Node Pattern Relationship Pattern
  • 25. Neo4j Inc. All rights reserved 2023 The Knowledge The Semantic layer 28
  • 26. Two “types” of semantics Neo4j Inc. All rights reserved 2024 29
  • 27. Two “types” of semantics Neo4j Inc. All rights reserved 2024 30
  • 28. Two “types” of semantics Neo4j Inc. All rights reserved 2024 31
  • 29. 32 3
  • 30. Knowledge graphs enable search with explicit and implicit (vector) relationships 33 Neo4j Inc. All rights reserved 2024
  • 31. A Knowledge Graph captures key enterprise knowledge in the form of entities and relationships between them. Some nodes in the graph have properties with NL text 34 3
  • 32. These property values get embedded (transformed into a numeric representation) and added to a vector index to enable vector-based semantic search. 35 3
  • 33. A semantic search on the vector index returns the k approximate nearest neighbours to the search concept (word, question, image, etc) 36 3
  • 34. Each result from the vector search is “dereferenced“ to get the corresponding node in the graph and a subsequent graph exploration finds semantically related elements that enrich and augment the final search result. 37 3
  • 35. Neo4j Inc. All rights reserved 2023 LLMs & GraphRAG Reliable AI 38
  • 36. Neo4j Inc. All rights reserved 2024 40 Grounding LLMs with KG: GraphRAG
  • 37. © 2023 Neo4j, Inc. All rights reserved. Demo time Code: https://github.com/jbarrasa/goingmeta/tree/main/session 24
  • 38. Neo4j Inc. All rights reserved 2024 42 Demo: Q&A on document with rich internal structure https://www.irishstatutebook.ie/eli/2015/si/516/made/en/p df
  • 39. Neo4j Inc. All rights reserved 2024 43 The document as a graph
  • 40. Neo4j Inc. All rights reserved 2024 44 Merci [email protected]