SlideShare a Scribd company logo
1 of 83
Neo4j Inc. All rights reserved 2024
March 13 2024
Breda
Architecting Innovative
Graph Applications
1
Neo4j Inc. All rights reserved 2024
Neo4j Field Engineering
Kees Vegter kees.vegter@neo4j.com
Niels de Jong niels.dejong@neo4j.com
2
Neo4j Inc. All rights reserved 2024
© 2023 Neo4j, Inc. All rights reserved.
Goal of Today
Demonstrate (with YOUR HELP :-)), how to build a
Graph Application
3
Neo4j Inc. All rights reserved 2024
© 2023 Neo4j, Inc. All rights reserved.
Agenda
1. Logistics
2. Introduction
3. Use Case Explanation
4. Building the Solution
5. Discussion: How to Improve the Use Case Further On
6. Final Q&A
7. Goodbye
4
BREAK (15min) Around 15:30
Neo4j Inc. All rights reserved 2024
5
Logistics
First things first …
Neo4j Inc. All rights reserved 2024
© 2023 Neo4j, Inc. All rights reserved.
Logistics
WIFI Access: Name: neo4j | Password: graphsummit24
Restrooms: Out of the room and to
Chargers:
Material of the workshop:
https://github.com/kvegter/gsummit2024
the left the right Straight ahead
under on top under the table in first row
x
6
x
Neo4j Inc. All rights reserved 2024
7
Introduction
A short overview of the Neo4j
Product
Neo4j Inc. All rights reserved 2024
Neo4j Native Graph Database - What is it?
8
Neo4j is a NORMAL
Database (DB)
● Comparable with other
DBs like Postgres,
MySQL, MariaDB,
Oracle, HANA DB, etc
● Securly save, insert,
update & query data
● Backup & Recovery
● Highly Scalable
Neo4j is “ACID Compliant”
and transaction save
● ACID (Atomicity,
Consistency, Isolation,
Durability)
● Data is stored
consistently on
transaction level
without any losses
during an outage
● Most relational DB’s
are ACID compliant,
too
*
* Source: Medium.com - Link to the Article
Neo4j is used 80%+ for
OLTP Workloads
● > 80% of Neo4j
Customers using the
database as normal
OLTP data store
● Data is stored,
changed, deleted and
queried
● With the same or even
better performance
compared to relational
database systems
Data
Data
DB
Neo4j Inc. All rights reserved 2024
What is the Value Using a Native Graph Database?
9
How data is stored on disk
● Data is already stored as
connected
● Data is efficiently placed
on-disk using
“Index-free Adjacency”
● A GDB stores Nodes and
Relations instead of
Rows & Columns
● Semantics may be built
into the data!
How to query the data
● Cypher Query Language
vs. SQL (ISO -> GQL)
● Simple, lesser lines of
code, easier to read and
maintain
● Queries possible, that
span 100+ Hops in the
Graph, which is
comparable with SQL
Joins over 100+ Tables!
(:Product)-[:CONTAINS]->(:Part)
Storing complex data
networks & semantics
● Storing and analyzing
complex relations
between data
● Analyzing data from
traditionally siloed data
sources
● Extendable with data
science algorithms and AI
Neo4j Inc. All rights reserved 2024
DATA SOURCES
10
USE CASES
INGEST
Apache
Hop
Structured
Unstructured
DATA
ANALYTICS
DATA
MANAGEMENT
Journey Analytics
Risk Analytics
Churn Analysis
What-if Analysis
Feature
Engineering & ML
Fraud
Recommendations
Data Fabric
Data Compliance
Data Governance
Data Provenance
Data Lineage
Next Best Case
Ontologies
Neo4j
Bloom
Neo4j
GDS Library
PRODUCT COMPONENTS
Neo4j Graph Platform
APOC
VISUALIZE
DRIVERS & APIs
Neo4j - Part of a Complete Ecosystem
Neo4j Inc. All rights reserved 2024
11
This is a Graph …
Neo4j Inc. All rights reserved 2024
12
This is a Graph, as well…
Neo4j Inc. All rights reserved 2024
13
…and this is also a Graph! Guess, what Graph could
it be?
* https://www.graphable.ai/blog/patient-journey-mapping/
Neo4j Inc. All rights reserved 2024
Nodes
• Can have Labels to classify Nodes
• Labels have native indexes
Relationships
• Connect nodes by Type and
Direction
Properties
• Attributes of Nodes & Relationships
• Stored as Name/Value pairs
• Can have indexes and composite
indexes
Labeled Property Graph Model
14
W
RITES
name: “Dan”
born: 29th May, 1970
twitter: “@dan”
id: “AAJ73840”
name: Radio portable
date:1st
October
text:“I’m happy with
my purchase”
rate: 5
BUYS
H
A
S
_
R
E
V
I
E
W
Customer Product
Review
Neo4j Inc. All rights reserved 2024
The Whiteboard Model Is the Physical Model
15
Neo4j Inc. All rights reserved 2024 16
The Graph Problem Problem
Many organizations don’t realize that they have a graph problem
Neo4j Inc. All rights reserved 2024
Adobe Behance
Social Network of 10M
Graphic Artists
Background
● Social network of 10M graphic artists
● Peer-to-peer evaluation of art and works-in-progress
● Job sourcing site for creatives
● Massive, millions of updates (reads & writes) to Activity Feed
● 150 Mongos to 48 Cassandras to 3 Neo4j’s!
Business Problem
● Artists subscribe, appreciate and curate “galleries” of works of their own
and from other artists
● Activities Feed is how everyone receives updates
● 1st implementation was 150 MongoDB instances
● 2nd implementation shrunk to 48 Cassandras, but it was still too slow and
required heavy IT overhead
Solution and Benefits
● 3rd implementation shrunk to 3 Neo4j instances
● Saved over $500k in annual AWS fees
● Reduced data footprint from 50TB to 40GB
● Significantly easier to introduce new features like, “New projects in your
Network”
17
Neo4j Inc. All rights reserved 2024
RDBMS vs Graph Model
18
RDBMS Model Graph Model
KNOWS
KNOWS
KNOWS
ANDREAS
TOBIAS
MICA
DELIA
Person Friend
Person-Friend
ANDREAS
DELIA
TOBIAS
MICA
Neo4j Inc. All rights reserved 2024
Graph Data Science
19
Neo4j Inc. All rights reserved 2024
Graph Algorithms Verticals
65+ graph algorithms in Neo4j 20
Neo4j Inc. All rights reserved 2024 21
Knowledge
Graphs
Neo4j Inc. All rights reserved 2024
:SAME_AS
User
:VISITED
Website
User
IPLocation
Website
IPLocation
Website
Website :VISITED
:VISITED
:VISITED
:USED
:USED
:
U
S
E
D
:
V
I
S
I
T
E
D
:
V
I
S
I
T
E
D
:VISITED
Graphs allows you to make implicit
relationships….
….explicit
Graphs….Grow!
22
Website
Neo4j Inc. All rights reserved 2024
Knowledge Graphs….Grow!
:SAME_AS
User
:VISITED
Website
User
IPLocation
Website
IPLocation
Website
Website
Website
:VISITED
:VISITED
:VISITED
:USED
:USED
:
U
S
E
D
:
V
I
S
I
T
E
D
:
V
I
S
I
T
E
D
:VISITED
User
:SAM
E_AS
:USED
:VISITED
PersonId: 1
PersonId: 1 PersonId: 1
User
:VISITED
…and can then group similar nodes…and
create a new graph from the explicit
relationships…
A graph grows organically - gaining
insights and enriching your data
PersonId: 2
23
Neo4j Inc. All rights reserved 2024
What can you do with a
knowledge graph?
Collaborative filtering: users who
bought X, also bought Y
(open-ended pattern matching)
What items make you more likely to
buy additional items in subsequent
transactions?
Traverse hierarchies - what items
are similar 4+ hops out?
How many flagged accounts
are in the applicant’s network
4+ hops out?
How many login / account
variables in common?
Add these metrics to your
approval process
What completes the
connections from genes to
diseases to targets?
What genes can be reached 4+
hops out from a known drug
target?
What mechanisms in common
are there between two drugs?
Financial Domain Life Sciences Marketing and
Recommendations
24
Neo4j Inc. All rights reserved 2024 25
Knowledge Graphs
Structured
Unstructured
Ontologies
Graph Algorithms and
Graph Queries
Semantics,
Derived Relationships and
Additional Context
Natural
Relationships
Neo4j Inc. All rights reserved 2024 26
…
Large Language
Models
Neo4j Inc. All rights reserved 2024
LLMs save time and money
Customer Operations Marketing & Sales
Software Engineering R&D
75% of GenAI value will come from these four areas
The economic potential of generative AI: The next productivity frontier, McKinsey & Company, June 2023.
27
Neo4j Inc. All rights reserved 2024
Lack of Enterprise Domain Knowledge
LLMs Challenges…
Outdated Public Sources Hallucination
Probabilistic
28
Neo4j Inc. All rights reserved 2024
Reliability
Ground LLMs in Neo4j’s Knowledge Graph
Improve Accuracy and Specificity
Security and Privacy
Probabilistic Deterministic Facts
Explainability
29
Neo4j Inc. All rights reserved 2024 30
Setting the context - From a user point of
view
Neo4j Inc. All rights reserved 2024 31
About Indexes
Indexes are used to 'land' in the Graph as quickly as possible
Normal Index Full Text Index Vector Index
Neo4j Inc. All rights reserved 2024 33
Vector Example
//
// Question input
//
with "Heb ik recht op een ov jaarkaart?" as vraag
//
// Question to embedding with OpenAI
//
WITH genai.vector.encode(vraag,"OpenAI",{token: $openaikey, model: $model } ) as embedding
//
// Vector search with the question-embedding as search parameter
//
CALL db.index.vector.queryNodes('tekst-embeddings', 5, embedding) YIELD node, score
//
// Now based on the nodes found in the vector index we can retrieve the context of the found nodes
//
MATCH p=(node)<-[*]-(:Wet)
RETURN score, node.tekst as text, p
Neo4j Inc. All rights reserved 2024
34
Data Insertion & Loading
Neo4j Inc. All rights reserved 2024
Data Insertion & Loading into Neo4j
● >>neo4j-admin import Command
● Cypher CSV Loader
● APOC
● ETL Tools (Apache Hop,…)
● Driver Connections
● 3rd Party Platforms (Kafka, Spark)
More about Data loading, etc. on the Neo4j Documentation
35
Neo4j Inc. All rights reserved 2024
36
Data Visualization
Neo4j Inc. All rights reserved 2024
Neo4j Bloom - Neo4j Visualisation Platform
37
Neo4j Inc. All rights reserved 2024
NeoDash - Dashboarding with Your
Graph Data
38
Neo4j Inc. All rights reserved 2024
39
Use Case Explanation
Digital Twin-An Overview
Neo4j Inc. All rights reserved 2024
What is a Digital Twin?
A Digital Twin is a digital
representation of an intended or
actual real-world physical
product, system, or process (a
physical twin) that serves as the
effectively indistinguishable
digital counterpart of it for
practical purposes, such as
simulation, integration, testing,
monitoring and maintenance.
40
Neo4j Inc. All rights reserved 2024
41
* It has been done before
• Challenge: Legacy technology
could not track and analyze train
journeys
• Solution: Neo4j Knowledge Graph
• Identify and avoid bottlenecks (DB)
EU Railway Network -
Track & Trace
Neo4j Inc. All rights reserved 2024
Why do we need a Digital Twin? (few reasons)
42
Improved efficiency
It can optimize its operations and
reduce costs by simulating
different scenarios and making
data-driven decisions.
Enhanced safety
It can identify potential hazards
and test safety measures to
improve safety for passengers and
employees.
Predictive maintenance
It can monitor asset condition in
real-time, predict maintenance
needs, and increase asset lifespan.
Improved customer
experience
A digital twin can simulate disruptions
and help proactively address issues to
enhance the customer experience and
increase satisfaction.
Neo4j Inc. All rights reserved 2024
Another reason why a digital twin might
be helpful
43
https://www.euronews.com/travel/20
23/02/21/unspeakable-botch-spain-s
pends-258-million-on-trains-that-are-t
oo-big-for-its-tunnels
Neo4j Inc. All rights reserved 2024
POI’s Included
44
Neo4j Inc. All rights reserved 2024
Unleash the power of the Graph
45
Neo4j Inc. All rights reserved 2024
46
Abstracting from this
Use Case
Digital Twin and Networks are everywhere
Neo4j Inc. All rights reserved 2024
Many other use cases are networks, too!
- Supply Chain
- Mobile Phones Networks
- Power Grids / Gas Grids / Fibre Networks
- Social Networks
- Patient Journeys
- etc
47
Neo4j Inc. All rights reserved 2024
48
Mobile Network Operations - Large Mobile Provider
● Digital Twin of Mobile
Network
● Planning and operation
○ Low signal strength of
tower
○ Moving equipment
around
● Simulation of possible failure
scenarios
● Repair & maintenance
support
○ Supply Chain Impact
Neo4j Inc. All rights reserved 2024
49
Plan maritime routes based on distances,
costs, and internal logic.
Results:
● Subsecond maritime routes planning
● Reduce global carbon emissions
60,000 tons
● 12-16M ROI for OrbitMI customers
“We wanted to create a solution that exploits
artificial intelligence, integrates current and
historical AIS positions as well as multiple
data feeds and APIs. Such an effort would
require a world-class infrastructure. That’s
why we selected Neo4j.”
David Levy
Chief Marketing Officer
OrbitMI
Customer Case Study:
Logistics and Supply
Chain
Neo4j Inc. All rights reserved 2024
50
The Sample Dataset
Neo4j Inc. All rights reserved 2024
Sample Data: Railway Network Digital Twin Dataset
Provided Data:
- Consists of a Railway Track Network + Operation Point (OP)
- It includes attributes like:
- Tracks called Sections,
- Stations and other OPs,
- Geo location information,
- Section length and speed,
- other parameters
- Add on from us: Point of Interest (POI) along tracks
- Format: CSV → Generated from XML
- Origin of Data: https://data-interop.era.europa.eu/search
51
Neo4j Inc. All rights reserved 2024
The Data Explained - In an Easy Way
“The data can be seen as a highway that has ramps throughout its entire
path.
Each ramp can be an Operation Point (OP) like a Station, a Switch, etc.
Tracks have a length and a speed associated. Tracks have a start point and
an endpoint and will be inter-connecting Operation Points.
An Operation Point has a name and is referred to by a relationship with a
country code.
52
Neo4j Inc. All rights reserved 2024
Operation Points (OP) - Data Explanation (Nodes)
CSV Header titles:
● id: the internal number of the OP
● extralabel: the kind of OP we deal with, e.g. Station, Junction, Switch, etc.
● name: the name of a OP
● latitude: of the OP
● longtitude: of the OP
Station
Small
Station
Switch
Border
Point
Junction
Passenger
Stop
Geolocation
Geolocation
sectionlength
speed
53
Neo4j Inc. All rights reserved 2024
Section Connection Data Explanation (Relationships)
CSV Header titles:
● source: start OP for this section
● target: end OP for this section
● sectionlength: the length in km of that section
● trackspeed: max speed allowed on that section
Station
(source)
Small
Station
Switch
(target)
Border
Point
Junction
Passenger
Stop
sectionlength
trackspeed
54
Neo4j Inc. All rights reserved 2024
Point of Interest (POI) Data Explanation
CSV Header titles:
● CITY: City the POI is in or close by
● POI_DESCRIPTION: A short description of of the POI
● LINK_FOTO: a short name
● LINK_WEBSITE: is the name of the track corresponding to the shortcut
● LAT: Latitude of the POI
● LONG: Longitude of the POI
● SECRET: True if not well know, False if well known (e.g. Berlin)
Station / OP
Name
Small
Station
Switch
Border
Point
Junction
Passenger
Stop
POI
(can be outside the city)
Geolocation
55
Neo4j Inc. All rights reserved 2024
56
Data Modeling - Writing
down Questions &
Answers
Neo4j Inc. All rights reserved 2024
Data Modeling - The Questions are the Input
1. How long is the journey in KM from station X to station Y?
2. How long in KM is an alternative route if a station on my journey is closed?
3. Do I have alternative routes if a station in my journey is down?
4. What is the shortest distance in KM between stations X and Y?
5. Can I geolocate stations in my static rail network?
6. What are the stations expecting the most traffic?
7. What POIs are along my route?
Note: Aggregations are also possible, but we focus on the “graphy” queries here!
57
Neo4j Inc. All rights reserved 2024
Expected Answers
1. Your journey is 30 stations and 239km long
2. Your alternative route is 36 stations and 271km
long
3. The shortest route between X and Y is XXX km
4. The geo location of your station is Lat / Long
5. The station with the most traffic is … ?
6. The following POIs are along your route …
58
Neo4j Inc. All rights reserved 2024
59
Data Modeling
Building the Model
Neo4j Inc. All rights reserved 2024
Tools for Graph Data Modeling
Arrows Tool → https://arrows.app
60
Neo4j Inc. All rights reserved 2024
Data Modeling Using the Questions as Input
1. How long is the journey in KM from station X to station Y?
2. How long in KM is an alternative route if a station on my journey is closed?
3. Do I have alternative routes if a station in my journey is down?
4. What is the shortest distance in KM between stations X and Y?
5. Can I geolocate stations in my static rail network?
6. What are the stations expecting the most traffic?
7. What POIs are along my route?
Remember those questions?
Blue → Nodes / Properties? Orange → Relationship Types
61
Neo4j Inc. All rights reserved 2024
Building a First Data Model 1/6
- Nouns in your questions are the nodes, verbs are the
relationships
- Nodes have a Label, Relationships MUST have a Type
- Properties should help to uniquely identify Nodes and/or
answer questions
62
Neo4j Inc. All rights reserved 2024
Building a First Data Model 2/6
- Nouns in your questions are the nodes, verbs are the
relationships
- Nodes have a Label, Relationships MUST have a Type
- Properties should help to uniquely identify Nodes and/or
answer questions
63
Neo4j Inc. All rights reserved 2024
Building a First Data Model 3/6
- Nouns in your questions are the nodes, verbs are the
relationships
- Nodes have a Label, Relationships MUST have a Type
- Properties should help to uniquely identify Nodes and/or
answer questions
=
64
Neo4j Inc. All rights reserved 2024
Building a First Data Model 4/6
- Nouns in your questions are the nodes, verbs are the
relationships
- Nodes have a Label, Relationships MUST have a Type
- Properties should help to uniquely identify Nodes and/or
answer questions
65
Neo4j Inc. All rights reserved 2024
Building a First Data Model 5/6
- Nouns in your questions are the nodes, verbs are the
relationships
- Nodes have a Label, Relationships MUST have a Type
- Properties should help to uniquely identify Nodes and/or
answer questions
66
Neo4j Inc. All rights reserved 2024
Building a First Data Model 6/6
- Nouns in your questions are the nodes, verbs are the
relationships
- Nodes have a Label, Relationships MUST have a Type
- Properties should help to uniquely identify Nodes and/or
answer questions
We will add more Labels to
this node, eg. Switch,
BorderPoint, etc.
67
Neo4j Inc. All rights reserved 2024
68
Workshop Time
Let’s build the solution
together …
Neo4j Inc. All rights reserved 2024
Let’s Do it Together …
1. Create a Neo4j Graph instance via any of:
a. Neo4j Aura
i. You can spin up a Free aura instance here. If you already have one Aura Free db in use
and don't want to clear it can use the following option for this workshop
b. Neo4j Sandbox use a "Blank Sandbox"
c. Neo4j Desktop
i. If you are using Neo4j Desktop, you will need to ensure that APOC is added to any graph
you create. Installation instructions can be found here.
2. Open the Github page at: https://github.com/kvegter/gsummit2024
a. load-all-data.cypher
https://console.neo4j.io/
69
Neo4j Inc. All rights reserved 2024
© 2023 Neo4j, Inc. All rights reserved.
70
(Basic) Cypher Hands-On
Neo4j Inc. All rights reserved 2024
Cypher: Powerful and Expressive Query Language
MATCH (:Person { name:“Dan”} ) -[:LOVES]-> (:Person { name:“Ann”} )
LOVES
Dan Ann
NODE NODE
LABEL PROPERTY
LABEL PROPERTY
CREATE
RELATIONSHIP
MATCH <PATTERN> RETURN <DATA>
71
Neo4j Inc. All rights reserved 2024
// What is this Query Doing?
MATCH (a:Person)-[:FRIEND_OF]->(b:Person)<-[:FRIEND_OF]-(c:Person)
WHERE a.name = “Kees Vegter”
AND c.name = “Marco De Luca“
RETURN b.name as Name, b.id as FriendID
Cypher Check Up
72
Neo4j Inc. All rights reserved 2024
// Find the 50 Operation Points, Ordered By Neo4j internal id’s
Cypher Hands-on Questions
73
Neo4j Inc. All rights reserved 2024
// Find the 50 Operation Points, Ordered By Neo4j internal id’s
MATCH (op:OperationalPoint)
RETURN op
ORDER BY id(op)
LIMIT 50;
Cypher Hands-on Questions
74
Neo4j Inc. All rights reserved 2024
// Find the 50 Operation Points, Ordered By Neo4j internal id’s
MATCH (op:OperationalPoint)
RETURN op
ORDER BY id(op)
LIMIT 50;
// Find All Operation Points Names in the city of Amsterdam
Cypher Hands-on Questions
75
Neo4j Inc. All rights reserved 2024
// Find the 50 Operation Points, Ordered By Neo4j internal id’s
MATCH (op:OperationalPoint)
RETURN op
ORDER BY id(op)
LIMIT 50;
// Find All Operation Points Names in the city of Amsterdam
MATCH (op:OperationalPointName)
WHERE op.name CONTAINS 'Amsterdam'
RETURN op.name;
Cypher Hands-on Questions
76
Neo4j Inc. All rights reserved 2024
// Find the Station id's for Berlin and Paris
// HINT: Use the pattern (OperationalPointName)<-[:NAMED]-(Station)
Cypher Hands-on Questions
77
Neo4j Inc. All rights reserved 2024
// Find the Station id's for Berlin and Amsterdam
// HINT: Use the pattern (OperationalPointName)<-[:NAMED]-(Station)
Cypher Hands-on Questions
MATCH (n:OperationalPointName)<-[r:NAMED]-(station:Station)
WHERE n.name STARTS WITH 'Berlin'
RETURN n.name, station.id
MATCH (n:OperationalPointName)<-[r:NAMED]-(station:Station)
WHERE n.name STARTS WITH 'Amsterdam'
RETURN n.name, station.id
78
Neo4j Inc. All rights reserved 2024
// Find the Shortest path between Frankfurt and Amsterdam
(Frankfurt-id: DE000FF, Amsterdam-id: NLASD)
TIP: use shortestPath
Cypher Hands-on Questions
MATCH (op1:OperationalPoint WHERE op1.id = 'NLASD')
MATCH (op2:OperationalPoint WHERE op2.id = 'DE000FF')
MATCH sp=shortestPath((op1)-[:SECTION*]-(op2))
RETURN sp;
79
Neo4j Inc. All rights reserved 2024
// Find the Shortest path between Amsterdam (POI) and Berlin (POI)
Cypher Hands-on Questions
MATCH(a:POI), (b:POI)
WHERE toLower(a.city) CONTAINS "amsterdam"
AND toLower(b.city) CONTAINS "berlin"
WITH a, b
MATCH p = shortestPath((a)-[*]-(b))
RETURN p
80
Neo4j Inc. All rights reserved 2024
© 2023 Neo4j, Inc. All rights reserved.
81
Build your own Graph Solution
with NeoDash
Go to the github page here and follow instructions:
Neo4j Inc. All rights reserved 2024
How Could this “Mini Digital Twin” be Enhanced?
Extending the Graph is easy, e.g. with further track information:
- For example with possible pace on track, track quality metrics, mobile network
coverage, etc.
- Sensor information about switches to quickly find problems and re-route traffic
- The more related information is added, the more use cases could benefit from
the digital twin
Going even further:
- Additional information about trains running on the tracks enable additional
benefit:
- Track and schedule optimization
- Simulation of new track (to grow traffic)
83
Neo4j Inc. All rights reserved 2024
84
Q & A
Neo4j Inc. All rights reserved 2024
85
Thanks for Graphing
with us!
Contact us:
Kees.Vegter@neo4j.com

More Related Content

Similar to Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf

Nordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
Nordics Edition - The Neo4j Graph Data Platform Today & TomorrowNordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
Nordics Edition - The Neo4j Graph Data Platform Today & TomorrowNeo4j
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j
 
Workshop Español - Introducción a Neo4j
Workshop Español - Introducción a Neo4jWorkshop Español - Introducción a Neo4j
Workshop Español - Introducción a Neo4jNeo4j
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jNeo4j
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jNeo4j
 
Peek into Neo4j Product Strategy and Roadmap
Peek into Neo4j Product Strategy and RoadmapPeek into Neo4j Product Strategy and Roadmap
Peek into Neo4j Product Strategy and RoadmapNeo4j
 
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j
 
Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j Neo4j
 
Enabling the digital thread using open OSLC standards
Enabling the digital thread using open OSLC standardsEnabling the digital thread using open OSLC standards
Enabling the digital thread using open OSLC standardsAxel Reichwein
 
Knowledge and Scalability Through Graph Composition
Knowledge and Scalability Through Graph CompositionKnowledge and Scalability Through Graph Composition
Knowledge and Scalability Through Graph CompositionNeo4j
 
Amsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & TomorrowAmsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & TomorrowNeo4j
 
Graph Data Science at Scale
Graph Data Science at ScaleGraph Data Science at Scale
Graph Data Science at ScaleNeo4j
 
GPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge GraphGPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge GraphNeo4j
 
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data ScienceGet Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data ScienceNeo4j
 
GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?Neo4j
 
GraphTour - Neo4j Database Overview
GraphTour - Neo4j Database OverviewGraphTour - Neo4j Database Overview
GraphTour - Neo4j Database OverviewNeo4j
 
La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...Neo4j
 

Similar to Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf (20)

Nordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
Nordics Edition - The Neo4j Graph Data Platform Today & TomorrowNordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
Nordics Edition - The Neo4j Graph Data Platform Today & Tomorrow
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)
 
Workshop Español - Introducción a Neo4j
Workshop Español - Introducción a Neo4jWorkshop Español - Introducción a Neo4j
Workshop Español - Introducción a Neo4j
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
 
Peek into Neo4j Product Strategy and Roadmap
Peek into Neo4j Product Strategy and RoadmapPeek into Neo4j Product Strategy and Roadmap
Peek into Neo4j Product Strategy and Roadmap
 
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with Graph
 
Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j Ultime Novità di Prodotto Neo4j
Ultime Novità di Prodotto Neo4j
 
Enabling the digital thread using open OSLC standards
Enabling the digital thread using open OSLC standardsEnabling the digital thread using open OSLC standards
Enabling the digital thread using open OSLC standards
 
Knowledge and Scalability Through Graph Composition
Knowledge and Scalability Through Graph CompositionKnowledge and Scalability Through Graph Composition
Knowledge and Scalability Through Graph Composition
 
Amsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & TomorrowAmsterdam - The Neo4j Graph Data Platform Today & Tomorrow
Amsterdam - The Neo4j Graph Data Platform Today & Tomorrow
 
Graph Data Science at Scale
Graph Data Science at ScaleGraph Data Science at Scale
Graph Data Science at Scale
 
GPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge GraphGPT and Graph Data Science to power your Knowledge Graph
GPT and Graph Data Science to power your Knowledge Graph
 
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data ScienceGet Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
Get Started with the Most Advanced Edition Yet of Neo4j Graph Data Science
 
GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?
 
GraphTour - Neo4j Database Overview
GraphTour - Neo4j Database OverviewGraphTour - Neo4j Database Overview
GraphTour - Neo4j Database Overview
 
La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...La strada verso il successo con i database a grafo, la Graph Data Science e l...
La strada verso il successo con i database a grafo, la Graph Data Science e l...
 

More from Neo4j

Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Workshop -  Architecting Innovative Graph Applications- GraphSummit MilanWorkshop -  Architecting Innovative Graph Applications- GraphSummit Milan
Workshop - Architecting Innovative Graph Applications- GraphSummit MilanNeo4j
 
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...Neo4j
 
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Milan - Visione e roadmap del prodotto Neo4jGraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Milan - Visione e roadmap del prodotto Neo4jNeo4j
 
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphGraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphNeo4j
 
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...Neo4j
 
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaUNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaNeo4j
 
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...Neo4j
 
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxFrom Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxNeo4j
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNeo4j
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansNeo4j
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...Neo4j
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosNeo4j
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Neo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 

More from Neo4j (20)

Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Workshop -  Architecting Innovative Graph Applications- GraphSummit MilanWorkshop -  Architecting Innovative Graph Applications- GraphSummit Milan
Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
 
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
 
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Milan - Visione e roadmap del prodotto Neo4jGraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
 
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphGraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
 
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
 
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaUNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
 
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
 
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxFrom Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMs
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
 

Recently uploaded

Gartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxGartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxchadhar227
 
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...gajnagarg
 
Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...
Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...
Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...HyderabadDolls
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...Elaine Werffeli
 
Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?RemarkSemacio
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...nirzagarg
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteedamy56318795
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...nirzagarg
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...
Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...
Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...HyderabadDolls
 
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...HyderabadDolls
 
Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...nirzagarg
 
Top Call Girls in Balaghat 9332606886Call Girls Advance Cash On Delivery Ser...
Top Call Girls in Balaghat  9332606886Call Girls Advance Cash On Delivery Ser...Top Call Girls in Balaghat  9332606886Call Girls Advance Cash On Delivery Ser...
Top Call Girls in Balaghat 9332606886Call Girls Advance Cash On Delivery Ser...kumargunjan9515
 
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...HyderabadDolls
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...nirzagarg
 
Vastral Call Girls Book Now 7737669865 Top Class Escort Service Available
Vastral Call Girls Book Now 7737669865 Top Class Escort Service AvailableVastral Call Girls Book Now 7737669865 Top Class Escort Service Available
Vastral Call Girls Book Now 7737669865 Top Class Escort Service Availablegargpaaro
 
Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...
Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...
Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...HyderabadDolls
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...gajnagarg
 
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With OrangePredicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With OrangeThinkInnovation
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabiaahmedjiabur940
 

Recently uploaded (20)

Gartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxGartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptx
 
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Nandurbar [ 7014168258 ] Call Me For Genuine Models...
 
Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...
Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...
Nirala Nagar / Cheap Call Girls In Lucknow Phone No 9548273370 Elite Escort S...
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
 
Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...
Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...
Sonagachi * best call girls in Kolkata | ₹,9500 Pay Cash 8005736733 Free Home...
 
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
Diamond Harbour \ Russian Call Girls Kolkata | Book 8005736733 Extreme Naught...
 
Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Rohtak [ 7014168258 ] Call Me For Genuine Models We...
 
Top Call Girls in Balaghat 9332606886Call Girls Advance Cash On Delivery Ser...
Top Call Girls in Balaghat  9332606886Call Girls Advance Cash On Delivery Ser...Top Call Girls in Balaghat  9332606886Call Girls Advance Cash On Delivery Ser...
Top Call Girls in Balaghat 9332606886Call Girls Advance Cash On Delivery Ser...
 
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
 
Vastral Call Girls Book Now 7737669865 Top Class Escort Service Available
Vastral Call Girls Book Now 7737669865 Top Class Escort Service AvailableVastral Call Girls Book Now 7737669865 Top Class Escort Service Available
Vastral Call Girls Book Now 7737669865 Top Class Escort Service Available
 
Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...
Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...
Charbagh + Female Escorts Service in Lucknow | Starting ₹,5K To @25k with A/C...
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
 
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With OrangePredicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
Predicting HDB Resale Prices - Conducting Linear Regression Analysis With Orange
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
 

Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf

  • 1. Neo4j Inc. All rights reserved 2024 March 13 2024 Breda Architecting Innovative Graph Applications 1
  • 2. Neo4j Inc. All rights reserved 2024 Neo4j Field Engineering Kees Vegter kees.vegter@neo4j.com Niels de Jong niels.dejong@neo4j.com 2
  • 3. Neo4j Inc. All rights reserved 2024 © 2023 Neo4j, Inc. All rights reserved. Goal of Today Demonstrate (with YOUR HELP :-)), how to build a Graph Application 3
  • 4. Neo4j Inc. All rights reserved 2024 © 2023 Neo4j, Inc. All rights reserved. Agenda 1. Logistics 2. Introduction 3. Use Case Explanation 4. Building the Solution 5. Discussion: How to Improve the Use Case Further On 6. Final Q&A 7. Goodbye 4 BREAK (15min) Around 15:30
  • 5. Neo4j Inc. All rights reserved 2024 5 Logistics First things first …
  • 6. Neo4j Inc. All rights reserved 2024 © 2023 Neo4j, Inc. All rights reserved. Logistics WIFI Access: Name: neo4j | Password: graphsummit24 Restrooms: Out of the room and to Chargers: Material of the workshop: https://github.com/kvegter/gsummit2024 the left the right Straight ahead under on top under the table in first row x 6 x
  • 7. Neo4j Inc. All rights reserved 2024 7 Introduction A short overview of the Neo4j Product
  • 8. Neo4j Inc. All rights reserved 2024 Neo4j Native Graph Database - What is it? 8 Neo4j is a NORMAL Database (DB) ● Comparable with other DBs like Postgres, MySQL, MariaDB, Oracle, HANA DB, etc ● Securly save, insert, update & query data ● Backup & Recovery ● Highly Scalable Neo4j is “ACID Compliant” and transaction save ● ACID (Atomicity, Consistency, Isolation, Durability) ● Data is stored consistently on transaction level without any losses during an outage ● Most relational DB’s are ACID compliant, too * * Source: Medium.com - Link to the Article Neo4j is used 80%+ for OLTP Workloads ● > 80% of Neo4j Customers using the database as normal OLTP data store ● Data is stored, changed, deleted and queried ● With the same or even better performance compared to relational database systems Data Data DB
  • 9. Neo4j Inc. All rights reserved 2024 What is the Value Using a Native Graph Database? 9 How data is stored on disk ● Data is already stored as connected ● Data is efficiently placed on-disk using “Index-free Adjacency” ● A GDB stores Nodes and Relations instead of Rows & Columns ● Semantics may be built into the data! How to query the data ● Cypher Query Language vs. SQL (ISO -> GQL) ● Simple, lesser lines of code, easier to read and maintain ● Queries possible, that span 100+ Hops in the Graph, which is comparable with SQL Joins over 100+ Tables! (:Product)-[:CONTAINS]->(:Part) Storing complex data networks & semantics ● Storing and analyzing complex relations between data ● Analyzing data from traditionally siloed data sources ● Extendable with data science algorithms and AI
  • 10. Neo4j Inc. All rights reserved 2024 DATA SOURCES 10 USE CASES INGEST Apache Hop Structured Unstructured DATA ANALYTICS DATA MANAGEMENT Journey Analytics Risk Analytics Churn Analysis What-if Analysis Feature Engineering & ML Fraud Recommendations Data Fabric Data Compliance Data Governance Data Provenance Data Lineage Next Best Case Ontologies Neo4j Bloom Neo4j GDS Library PRODUCT COMPONENTS Neo4j Graph Platform APOC VISUALIZE DRIVERS & APIs Neo4j - Part of a Complete Ecosystem
  • 11. Neo4j Inc. All rights reserved 2024 11 This is a Graph …
  • 12. Neo4j Inc. All rights reserved 2024 12 This is a Graph, as well…
  • 13. Neo4j Inc. All rights reserved 2024 13 …and this is also a Graph! Guess, what Graph could it be? * https://www.graphable.ai/blog/patient-journey-mapping/
  • 14. Neo4j Inc. All rights reserved 2024 Nodes • Can have Labels to classify Nodes • Labels have native indexes Relationships • Connect nodes by Type and Direction Properties • Attributes of Nodes & Relationships • Stored as Name/Value pairs • Can have indexes and composite indexes Labeled Property Graph Model 14 W RITES name: “Dan” born: 29th May, 1970 twitter: “@dan” id: “AAJ73840” name: Radio portable date:1st October text:“I’m happy with my purchase” rate: 5 BUYS H A S _ R E V I E W Customer Product Review
  • 15. Neo4j Inc. All rights reserved 2024 The Whiteboard Model Is the Physical Model 15
  • 16. Neo4j Inc. All rights reserved 2024 16 The Graph Problem Problem Many organizations don’t realize that they have a graph problem
  • 17. Neo4j Inc. All rights reserved 2024 Adobe Behance Social Network of 10M Graphic Artists Background ● Social network of 10M graphic artists ● Peer-to-peer evaluation of art and works-in-progress ● Job sourcing site for creatives ● Massive, millions of updates (reads & writes) to Activity Feed ● 150 Mongos to 48 Cassandras to 3 Neo4j’s! Business Problem ● Artists subscribe, appreciate and curate “galleries” of works of their own and from other artists ● Activities Feed is how everyone receives updates ● 1st implementation was 150 MongoDB instances ● 2nd implementation shrunk to 48 Cassandras, but it was still too slow and required heavy IT overhead Solution and Benefits ● 3rd implementation shrunk to 3 Neo4j instances ● Saved over $500k in annual AWS fees ● Reduced data footprint from 50TB to 40GB ● Significantly easier to introduce new features like, “New projects in your Network” 17
  • 18. Neo4j Inc. All rights reserved 2024 RDBMS vs Graph Model 18 RDBMS Model Graph Model KNOWS KNOWS KNOWS ANDREAS TOBIAS MICA DELIA Person Friend Person-Friend ANDREAS DELIA TOBIAS MICA
  • 19. Neo4j Inc. All rights reserved 2024 Graph Data Science 19
  • 20. Neo4j Inc. All rights reserved 2024 Graph Algorithms Verticals 65+ graph algorithms in Neo4j 20
  • 21. Neo4j Inc. All rights reserved 2024 21 Knowledge Graphs
  • 22. Neo4j Inc. All rights reserved 2024 :SAME_AS User :VISITED Website User IPLocation Website IPLocation Website Website :VISITED :VISITED :VISITED :USED :USED : U S E D : V I S I T E D : V I S I T E D :VISITED Graphs allows you to make implicit relationships…. ….explicit Graphs….Grow! 22 Website
  • 23. Neo4j Inc. All rights reserved 2024 Knowledge Graphs….Grow! :SAME_AS User :VISITED Website User IPLocation Website IPLocation Website Website Website :VISITED :VISITED :VISITED :USED :USED : U S E D : V I S I T E D : V I S I T E D :VISITED User :SAM E_AS :USED :VISITED PersonId: 1 PersonId: 1 PersonId: 1 User :VISITED …and can then group similar nodes…and create a new graph from the explicit relationships… A graph grows organically - gaining insights and enriching your data PersonId: 2 23
  • 24. Neo4j Inc. All rights reserved 2024 What can you do with a knowledge graph? Collaborative filtering: users who bought X, also bought Y (open-ended pattern matching) What items make you more likely to buy additional items in subsequent transactions? Traverse hierarchies - what items are similar 4+ hops out? How many flagged accounts are in the applicant’s network 4+ hops out? How many login / account variables in common? Add these metrics to your approval process What completes the connections from genes to diseases to targets? What genes can be reached 4+ hops out from a known drug target? What mechanisms in common are there between two drugs? Financial Domain Life Sciences Marketing and Recommendations 24
  • 25. Neo4j Inc. All rights reserved 2024 25 Knowledge Graphs Structured Unstructured Ontologies Graph Algorithms and Graph Queries Semantics, Derived Relationships and Additional Context Natural Relationships
  • 26. Neo4j Inc. All rights reserved 2024 26 … Large Language Models
  • 27. Neo4j Inc. All rights reserved 2024 LLMs save time and money Customer Operations Marketing & Sales Software Engineering R&D 75% of GenAI value will come from these four areas The economic potential of generative AI: The next productivity frontier, McKinsey & Company, June 2023. 27
  • 28. Neo4j Inc. All rights reserved 2024 Lack of Enterprise Domain Knowledge LLMs Challenges… Outdated Public Sources Hallucination Probabilistic 28
  • 29. Neo4j Inc. All rights reserved 2024 Reliability Ground LLMs in Neo4j’s Knowledge Graph Improve Accuracy and Specificity Security and Privacy Probabilistic Deterministic Facts Explainability 29
  • 30. Neo4j Inc. All rights reserved 2024 30 Setting the context - From a user point of view
  • 31. Neo4j Inc. All rights reserved 2024 31 About Indexes Indexes are used to 'land' in the Graph as quickly as possible Normal Index Full Text Index Vector Index
  • 32. Neo4j Inc. All rights reserved 2024 33 Vector Example // // Question input // with "Heb ik recht op een ov jaarkaart?" as vraag // // Question to embedding with OpenAI // WITH genai.vector.encode(vraag,"OpenAI",{token: $openaikey, model: $model } ) as embedding // // Vector search with the question-embedding as search parameter // CALL db.index.vector.queryNodes('tekst-embeddings', 5, embedding) YIELD node, score // // Now based on the nodes found in the vector index we can retrieve the context of the found nodes // MATCH p=(node)<-[*]-(:Wet) RETURN score, node.tekst as text, p
  • 33. Neo4j Inc. All rights reserved 2024 34 Data Insertion & Loading
  • 34. Neo4j Inc. All rights reserved 2024 Data Insertion & Loading into Neo4j ● >>neo4j-admin import Command ● Cypher CSV Loader ● APOC ● ETL Tools (Apache Hop,…) ● Driver Connections ● 3rd Party Platforms (Kafka, Spark) More about Data loading, etc. on the Neo4j Documentation 35
  • 35. Neo4j Inc. All rights reserved 2024 36 Data Visualization
  • 36. Neo4j Inc. All rights reserved 2024 Neo4j Bloom - Neo4j Visualisation Platform 37
  • 37. Neo4j Inc. All rights reserved 2024 NeoDash - Dashboarding with Your Graph Data 38
  • 38. Neo4j Inc. All rights reserved 2024 39 Use Case Explanation Digital Twin-An Overview
  • 39. Neo4j Inc. All rights reserved 2024 What is a Digital Twin? A Digital Twin is a digital representation of an intended or actual real-world physical product, system, or process (a physical twin) that serves as the effectively indistinguishable digital counterpart of it for practical purposes, such as simulation, integration, testing, monitoring and maintenance. 40
  • 40. Neo4j Inc. All rights reserved 2024 41 * It has been done before • Challenge: Legacy technology could not track and analyze train journeys • Solution: Neo4j Knowledge Graph • Identify and avoid bottlenecks (DB) EU Railway Network - Track & Trace
  • 41. Neo4j Inc. All rights reserved 2024 Why do we need a Digital Twin? (few reasons) 42 Improved efficiency It can optimize its operations and reduce costs by simulating different scenarios and making data-driven decisions. Enhanced safety It can identify potential hazards and test safety measures to improve safety for passengers and employees. Predictive maintenance It can monitor asset condition in real-time, predict maintenance needs, and increase asset lifespan. Improved customer experience A digital twin can simulate disruptions and help proactively address issues to enhance the customer experience and increase satisfaction.
  • 42. Neo4j Inc. All rights reserved 2024 Another reason why a digital twin might be helpful 43 https://www.euronews.com/travel/20 23/02/21/unspeakable-botch-spain-s pends-258-million-on-trains-that-are-t oo-big-for-its-tunnels
  • 43. Neo4j Inc. All rights reserved 2024 POI’s Included 44
  • 44. Neo4j Inc. All rights reserved 2024 Unleash the power of the Graph 45
  • 45. Neo4j Inc. All rights reserved 2024 46 Abstracting from this Use Case Digital Twin and Networks are everywhere
  • 46. Neo4j Inc. All rights reserved 2024 Many other use cases are networks, too! - Supply Chain - Mobile Phones Networks - Power Grids / Gas Grids / Fibre Networks - Social Networks - Patient Journeys - etc 47
  • 47. Neo4j Inc. All rights reserved 2024 48 Mobile Network Operations - Large Mobile Provider ● Digital Twin of Mobile Network ● Planning and operation ○ Low signal strength of tower ○ Moving equipment around ● Simulation of possible failure scenarios ● Repair & maintenance support ○ Supply Chain Impact
  • 48. Neo4j Inc. All rights reserved 2024 49 Plan maritime routes based on distances, costs, and internal logic. Results: ● Subsecond maritime routes planning ● Reduce global carbon emissions 60,000 tons ● 12-16M ROI for OrbitMI customers “We wanted to create a solution that exploits artificial intelligence, integrates current and historical AIS positions as well as multiple data feeds and APIs. Such an effort would require a world-class infrastructure. That’s why we selected Neo4j.” David Levy Chief Marketing Officer OrbitMI Customer Case Study: Logistics and Supply Chain
  • 49. Neo4j Inc. All rights reserved 2024 50 The Sample Dataset
  • 50. Neo4j Inc. All rights reserved 2024 Sample Data: Railway Network Digital Twin Dataset Provided Data: - Consists of a Railway Track Network + Operation Point (OP) - It includes attributes like: - Tracks called Sections, - Stations and other OPs, - Geo location information, - Section length and speed, - other parameters - Add on from us: Point of Interest (POI) along tracks - Format: CSV → Generated from XML - Origin of Data: https://data-interop.era.europa.eu/search 51
  • 51. Neo4j Inc. All rights reserved 2024 The Data Explained - In an Easy Way “The data can be seen as a highway that has ramps throughout its entire path. Each ramp can be an Operation Point (OP) like a Station, a Switch, etc. Tracks have a length and a speed associated. Tracks have a start point and an endpoint and will be inter-connecting Operation Points. An Operation Point has a name and is referred to by a relationship with a country code. 52
  • 52. Neo4j Inc. All rights reserved 2024 Operation Points (OP) - Data Explanation (Nodes) CSV Header titles: ● id: the internal number of the OP ● extralabel: the kind of OP we deal with, e.g. Station, Junction, Switch, etc. ● name: the name of a OP ● latitude: of the OP ● longtitude: of the OP Station Small Station Switch Border Point Junction Passenger Stop Geolocation Geolocation sectionlength speed 53
  • 53. Neo4j Inc. All rights reserved 2024 Section Connection Data Explanation (Relationships) CSV Header titles: ● source: start OP for this section ● target: end OP for this section ● sectionlength: the length in km of that section ● trackspeed: max speed allowed on that section Station (source) Small Station Switch (target) Border Point Junction Passenger Stop sectionlength trackspeed 54
  • 54. Neo4j Inc. All rights reserved 2024 Point of Interest (POI) Data Explanation CSV Header titles: ● CITY: City the POI is in or close by ● POI_DESCRIPTION: A short description of of the POI ● LINK_FOTO: a short name ● LINK_WEBSITE: is the name of the track corresponding to the shortcut ● LAT: Latitude of the POI ● LONG: Longitude of the POI ● SECRET: True if not well know, False if well known (e.g. Berlin) Station / OP Name Small Station Switch Border Point Junction Passenger Stop POI (can be outside the city) Geolocation 55
  • 55. Neo4j Inc. All rights reserved 2024 56 Data Modeling - Writing down Questions & Answers
  • 56. Neo4j Inc. All rights reserved 2024 Data Modeling - The Questions are the Input 1. How long is the journey in KM from station X to station Y? 2. How long in KM is an alternative route if a station on my journey is closed? 3. Do I have alternative routes if a station in my journey is down? 4. What is the shortest distance in KM between stations X and Y? 5. Can I geolocate stations in my static rail network? 6. What are the stations expecting the most traffic? 7. What POIs are along my route? Note: Aggregations are also possible, but we focus on the “graphy” queries here! 57
  • 57. Neo4j Inc. All rights reserved 2024 Expected Answers 1. Your journey is 30 stations and 239km long 2. Your alternative route is 36 stations and 271km long 3. The shortest route between X and Y is XXX km 4. The geo location of your station is Lat / Long 5. The station with the most traffic is … ? 6. The following POIs are along your route … 58
  • 58. Neo4j Inc. All rights reserved 2024 59 Data Modeling Building the Model
  • 59. Neo4j Inc. All rights reserved 2024 Tools for Graph Data Modeling Arrows Tool → https://arrows.app 60
  • 60. Neo4j Inc. All rights reserved 2024 Data Modeling Using the Questions as Input 1. How long is the journey in KM from station X to station Y? 2. How long in KM is an alternative route if a station on my journey is closed? 3. Do I have alternative routes if a station in my journey is down? 4. What is the shortest distance in KM between stations X and Y? 5. Can I geolocate stations in my static rail network? 6. What are the stations expecting the most traffic? 7. What POIs are along my route? Remember those questions? Blue → Nodes / Properties? Orange → Relationship Types 61
  • 61. Neo4j Inc. All rights reserved 2024 Building a First Data Model 1/6 - Nouns in your questions are the nodes, verbs are the relationships - Nodes have a Label, Relationships MUST have a Type - Properties should help to uniquely identify Nodes and/or answer questions 62
  • 62. Neo4j Inc. All rights reserved 2024 Building a First Data Model 2/6 - Nouns in your questions are the nodes, verbs are the relationships - Nodes have a Label, Relationships MUST have a Type - Properties should help to uniquely identify Nodes and/or answer questions 63
  • 63. Neo4j Inc. All rights reserved 2024 Building a First Data Model 3/6 - Nouns in your questions are the nodes, verbs are the relationships - Nodes have a Label, Relationships MUST have a Type - Properties should help to uniquely identify Nodes and/or answer questions = 64
  • 64. Neo4j Inc. All rights reserved 2024 Building a First Data Model 4/6 - Nouns in your questions are the nodes, verbs are the relationships - Nodes have a Label, Relationships MUST have a Type - Properties should help to uniquely identify Nodes and/or answer questions 65
  • 65. Neo4j Inc. All rights reserved 2024 Building a First Data Model 5/6 - Nouns in your questions are the nodes, verbs are the relationships - Nodes have a Label, Relationships MUST have a Type - Properties should help to uniquely identify Nodes and/or answer questions 66
  • 66. Neo4j Inc. All rights reserved 2024 Building a First Data Model 6/6 - Nouns in your questions are the nodes, verbs are the relationships - Nodes have a Label, Relationships MUST have a Type - Properties should help to uniquely identify Nodes and/or answer questions We will add more Labels to this node, eg. Switch, BorderPoint, etc. 67
  • 67. Neo4j Inc. All rights reserved 2024 68 Workshop Time Let’s build the solution together …
  • 68. Neo4j Inc. All rights reserved 2024 Let’s Do it Together … 1. Create a Neo4j Graph instance via any of: a. Neo4j Aura i. You can spin up a Free aura instance here. If you already have one Aura Free db in use and don't want to clear it can use the following option for this workshop b. Neo4j Sandbox use a "Blank Sandbox" c. Neo4j Desktop i. If you are using Neo4j Desktop, you will need to ensure that APOC is added to any graph you create. Installation instructions can be found here. 2. Open the Github page at: https://github.com/kvegter/gsummit2024 a. load-all-data.cypher https://console.neo4j.io/ 69
  • 69. Neo4j Inc. All rights reserved 2024 © 2023 Neo4j, Inc. All rights reserved. 70 (Basic) Cypher Hands-On
  • 70. Neo4j Inc. All rights reserved 2024 Cypher: Powerful and Expressive Query Language MATCH (:Person { name:“Dan”} ) -[:LOVES]-> (:Person { name:“Ann”} ) LOVES Dan Ann NODE NODE LABEL PROPERTY LABEL PROPERTY CREATE RELATIONSHIP MATCH <PATTERN> RETURN <DATA> 71
  • 71. Neo4j Inc. All rights reserved 2024 // What is this Query Doing? MATCH (a:Person)-[:FRIEND_OF]->(b:Person)<-[:FRIEND_OF]-(c:Person) WHERE a.name = “Kees Vegter” AND c.name = “Marco De Luca“ RETURN b.name as Name, b.id as FriendID Cypher Check Up 72
  • 72. Neo4j Inc. All rights reserved 2024 // Find the 50 Operation Points, Ordered By Neo4j internal id’s Cypher Hands-on Questions 73
  • 73. Neo4j Inc. All rights reserved 2024 // Find the 50 Operation Points, Ordered By Neo4j internal id’s MATCH (op:OperationalPoint) RETURN op ORDER BY id(op) LIMIT 50; Cypher Hands-on Questions 74
  • 74. Neo4j Inc. All rights reserved 2024 // Find the 50 Operation Points, Ordered By Neo4j internal id’s MATCH (op:OperationalPoint) RETURN op ORDER BY id(op) LIMIT 50; // Find All Operation Points Names in the city of Amsterdam Cypher Hands-on Questions 75
  • 75. Neo4j Inc. All rights reserved 2024 // Find the 50 Operation Points, Ordered By Neo4j internal id’s MATCH (op:OperationalPoint) RETURN op ORDER BY id(op) LIMIT 50; // Find All Operation Points Names in the city of Amsterdam MATCH (op:OperationalPointName) WHERE op.name CONTAINS 'Amsterdam' RETURN op.name; Cypher Hands-on Questions 76
  • 76. Neo4j Inc. All rights reserved 2024 // Find the Station id's for Berlin and Paris // HINT: Use the pattern (OperationalPointName)<-[:NAMED]-(Station) Cypher Hands-on Questions 77
  • 77. Neo4j Inc. All rights reserved 2024 // Find the Station id's for Berlin and Amsterdam // HINT: Use the pattern (OperationalPointName)<-[:NAMED]-(Station) Cypher Hands-on Questions MATCH (n:OperationalPointName)<-[r:NAMED]-(station:Station) WHERE n.name STARTS WITH 'Berlin' RETURN n.name, station.id MATCH (n:OperationalPointName)<-[r:NAMED]-(station:Station) WHERE n.name STARTS WITH 'Amsterdam' RETURN n.name, station.id 78
  • 78. Neo4j Inc. All rights reserved 2024 // Find the Shortest path between Frankfurt and Amsterdam (Frankfurt-id: DE000FF, Amsterdam-id: NLASD) TIP: use shortestPath Cypher Hands-on Questions MATCH (op1:OperationalPoint WHERE op1.id = 'NLASD') MATCH (op2:OperationalPoint WHERE op2.id = 'DE000FF') MATCH sp=shortestPath((op1)-[:SECTION*]-(op2)) RETURN sp; 79
  • 79. Neo4j Inc. All rights reserved 2024 // Find the Shortest path between Amsterdam (POI) and Berlin (POI) Cypher Hands-on Questions MATCH(a:POI), (b:POI) WHERE toLower(a.city) CONTAINS "amsterdam" AND toLower(b.city) CONTAINS "berlin" WITH a, b MATCH p = shortestPath((a)-[*]-(b)) RETURN p 80
  • 80. Neo4j Inc. All rights reserved 2024 © 2023 Neo4j, Inc. All rights reserved. 81 Build your own Graph Solution with NeoDash Go to the github page here and follow instructions:
  • 81. Neo4j Inc. All rights reserved 2024 How Could this “Mini Digital Twin” be Enhanced? Extending the Graph is easy, e.g. with further track information: - For example with possible pace on track, track quality metrics, mobile network coverage, etc. - Sensor information about switches to quickly find problems and re-route traffic - The more related information is added, the more use cases could benefit from the digital twin Going even further: - Additional information about trains running on the tracks enable additional benefit: - Track and schedule optimization - Simulation of new track (to grow traffic) 83
  • 82. Neo4j Inc. All rights reserved 2024 84 Q & A
  • 83. Neo4j Inc. All rights reserved 2024 85 Thanks for Graphing with us! Contact us: Kees.Vegter@neo4j.com