SlideShare a Scribd company logo
Neo4j Inc. All rights reserved 2024
Visione e roadmap del
prodotto Neo4j
Ivan Zoratti
VP of Product Management
Neo4j Inc. All rights reserved 2024
SAFE HARBOR ROADMAP
DISCLAIMER
The information presented here is Neo4j, Inc. confidential and does not
constitute, and should not be construed as, a promise or commitment by
Neo4j to develop, market or deliver any particular product, feature or
function.
Neo4j reserves the right to change its product plans or roadmap at any
time, without obligation to notify any person of such changes.
The timing and content of Neo4j’s future product releases could differ
materially from the expectations discussed herein.
2
New in Neo4j 5
Neo4j
Product capabilities launched in 2023/2024
Neo4j Inc. All rights reserved 2024
5
● 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
6
Cloud Scale
• Procure through Aura Console or via
Cloud Marketplace
• Zero maintenance, automated
upgrades and highly available
• Scalable and elastic, on-demand
• Enterprise-grade security
• SOC II Type 2 compliance
• Easier RBAC configuration with Aura
Console
• Private link
• CMEK
• Observability with Ops Manager,
performance metrics and logs
forwarding
Customer Managed Keys (Encryption)
7 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)
8
Unified Product Experience
9 Neo4j Inc. All rights reserved 2024
Aura Console
Graph Tools
Ops
Management
Neo4j Inc. All rights reserved 2024
10
April 12, 2024
Welcome GQL!
GQL - Graph Query Language
The first new ISO language since 1987
GQL-fueled additions in Cypher:
• Node and relationship expressions WHERE
clause
• Richer label expressions
• Sophisticated pattern repetitions
• SQL-like synonims
• GQL Error codes
• GQL is Here: Your Cypher Queries in a GQL World
• GQL: The ISO Standard for Graphs Has Arrived
• ISO GQL: A Defining Moment in the History of
Database Innovation
Neo4j Inc. All rights reserved 2024
11
New constraints on nodes,
relationships and properties:
● Unique relationship
property
● Relationship key
● Property data types
NEO4J 5 NEW CAPABILITIES
Graph Schema
Graph Schema / Graph Type
Neo4j Inc. All rights reserved 2024
12
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
13
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
Graph Pattern Matching Example → Fraud Rings
Neo4j Inc. All rights reserved 2024
14
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
accountNumber:2
amount: 1000
date: 2023-01-01T10:10:10.000+0000
accountNumber:1
amount: 900
date: 2023-01-02T10:10:10.000+0000
amount: 729
date: 2023-01-04T10:10:10.000+0000
accountNumber:4
accountNumber:3
Neo4j Inc. All rights reserved 2024
15
Parallel
Runtime
Speed up
analytical
queries up to
100x
Neo4j Inc. All rights reserved 2024
16
Parallel
Runtime
Speed up
analytical
queries up to
100x
Neo4j Inc. All rights reserved 2024
17
Parallel
Runtime
Speed up
analytical
queries up to
100x MORE CORES
Neo4j Inc. All rights reserved 2024
18
Parallel
Runtime
Speed up
analytical
queries up to
100x
FASTER
QUERIES
MORE CORES
Neo4j Inc. All rights reserved 2024
19
BLOCK FORMAT
Memory Optimized
and Future Proof
An implementation of graph-native
that’s informed by more than a
decade of experience supporting real-
world production graph workloads.
Neo4j is still graph-first; block format
is:
• Native graph storage
• Optimized for connected data
• Index-free adjacency
Block format supersedes all previous
store formats.
Migrate, convert, import into Block
Format
CHANGE DATA CAPTURE
Automated Real-Time Change Tracking
20 Neo4j Inc. All rights reserved 2024
Graph Data at Scale
21 Neo4j Inc. All rights reserved 2024
Autonomous Clustering
Easy, automated horizontal scale-
out
Composite Databases
Federated queries and sharded graphs
Graph Data at Scale
22 Neo4j Inc. All rights reserved 2024
Properties Sharding
23 Neo4j Inc. All rights reserved 2024
Users’ Connections TOPOLOGY DATABASE
SHARDED PROPERTY
DATABASES
Parallel
data load
Rolling
updates on
demand
AI Enabler
Graph Data Science & Generative AI
Neo4j Inc. All rights reserved 2024
24
Knowledge Graphs + LLMs
Facts
Explicit
Explainable
Words
Implicit
Opaque
KGs LLMs
+
Left Brain + Right Brain
Neo4j Inc. All rights reserved 2024
25
A Perfect Match
Artificial Intelligence
Machine Learning
Information Architecture
Data Architecture
LLM
Knowledge
Graph
Linguistic
Pattern
Matching
Hierarchical
Emergent
Features
Neo4j Inc. All rights reserved 2024
26
Could this be vector search?
Artificial Intelligence
Machine Learning
Information Architecture
Data Architecture
LLM
Knowledge
Graph
Linguistic
Pattern
Matching
Hierarchical
Emergent
Features
Neo4j Inc. All rights reserved 2024
27
Why RAG With Vector Databases Fall Short
Similarity is insufficient for rich enterprise reasoning
Neo4j Inc. All rights reserved 2024
28
1
3
2
4
Only leverage a fraction of
your data: Beyond simple
“metadata”, vector databases
alone fail to capture relationships
from structured data
Miss critical context: Struggle to
capture connections across
nuanced facts, making it
challenging to answer multi-step,
domain-specific, questions
Vector Similarity ≠ Relevance:
Vector search uses an incomplete
measure of similarity. Relying on it
solely can result in irrelevant and
duplicative results
Lack explainability:
The black-box nature of
vectors lacks transparency
and explainability
29 Neo4j Inc. All rights reserved 2024
DATA INFORMATION KNOWLEDGE INSIGHT MEANING
records sets relationships patterns layers
What is a Knowledge Graph?
An information architecture with layered connections.
RAG with Neo4j
Neo4j Inc. All rights reserved 2024
30
Find similar documents,
content and data
Expanded context for
related information and
ranking results
Improve GenAI inferences and
insights. Discover new
relationships and entities
Unified search, knowledge graph and data science capabilities to
improve RAG quality and effectiveness
Vector Search,
Full-text Search,
Geospatial, Pattern
match
Data Science
Knowledge Graph
Knowledge Graph Complementary Benefits
LLM
Human
Application
Knowledge
Graph
Extend LLM
knowledge
through RAG
Invite human
exploration &
curation
Advanced
application
features & analysis
Neo4j Inc. All rights reserved 2024
31
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
Neo4j Inc. All rights reserved 2024
32
Neo4j Inc. All rights reserved 2024
33
Knowledge Graph
Construction with
Cypher Templates
Graph Builder
Neo4j Inc. All rights reserved 2024
34
Human
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
2 RAG-based Chat Applications
Neo4j Inc. All rights reserved 2024
35
Neo4j Inc. All rights reserved 2024
36
Natural Language
Search combining
explicit and implicit
relationships
Neo4j Inc. All rights reserved 2024
37
Browser Co-Pilot
• Uses Text2Cypher
model provided by LLM
API service layer
• UI/UX improvements
underway for surfacing
the copilot feature in
Query
• Soon to be available in
Workspace / UPX
Application Human
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
2 RAG-based Chat Applications
3 RAG-enhanced General Applications
Neo4j Inc. All rights reserved 2024
38
Neo4j Inc. All rights reserved 2024
39
Natural Language
assistants and co-
pilots,
rooted in
business policy
Prompt +
Relevant
Information
Embedding API LLM API
User
Database
Search
Prompt Response
Relevant Results
Knowledge
Graph
Application
● Integrate Neo4j with leading LLM
open-source frameworks such as
LangChain and LlamaIndex
● Call LLM APIs natively via Cypher
using our open-source APOC library
● Agnostic LLM orchestration
connecting graphs to OpenAI,
AWS Bedrock, GCP Vertex AI,
Azure, Anthropic, Hugging Face,
and other proprietary and open
source foundation models
Integrate with the GenAI Ecosystem
Neo4j Inc. All rights reserved 2024
40
GenAI Stack
Application
Generative AI & Embedding Models
Orchestration
Grounding Knowledge Graph
Neo4j GenAI Integrations
Text | Chat | Embedding
NL Query | Image Gen
Neo4j Drivers
Python JavaScript Java
Neo4jGraph
Neo4jVector
GraphCypherQAChain
Neo4jGraphStore
Neo4jVectorStore
KnowledgeGraphIndex
● Co-Pilot in Neo4j Browser for autocomplete
& Cypher generation
● Bloom & NeoDash NL integration
● More framework integrations:
﹣ Langchain, LlamaIndex,
SemanticKernel, Spring.AI, Haystack
POWERING GENERATIVE AI APPS
Neo4j’s GenAI Roadmap
Neo4j Inc. All rights reserved 2024
41
Coming 2024+
Neo4j Inc. All rights reserved 2024
42
Grazie!
ivan@neo4j.com
Follow us!
@neo4j

More Related Content

Similar to GraphSummit Milan - Visione e roadmap del prodotto 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 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
 
The path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data ScienceThe path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data ScienceNeo4j
 
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
 
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
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j
 
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
 
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
 
The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...
The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...
The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...Neo4j
 
The Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdfThe Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdfNeo4j
 
Workshop - Build a Graph Solution
Workshop - Build a Graph SolutionWorkshop - Build a Graph Solution
Workshop - Build a Graph SolutionNeo4j
 
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
 
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptxNeo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptxNeo4j
 
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...Neo4j
 
The Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdfThe Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdfNeo4j
 
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
 
Discover Aura Workshop (12.5.23).pdf
Discover Aura Workshop (12.5.23).pdfDiscover Aura Workshop (12.5.23).pdf
Discover Aura Workshop (12.5.23).pdfNeo4j
 
Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...
Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...
Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...Neo4j
 
Discover Neo4j Aura Workshop (9.27.23).pptx
Discover Neo4j Aura Workshop (9.27.23).pptxDiscover Neo4j Aura Workshop (9.27.23).pptx
Discover Neo4j Aura Workshop (9.27.23).pptxNeo4j
 
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
 

Similar to GraphSummit Milan - Visione e roadmap del prodotto Neo4j (20)

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
 
The path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data ScienceThe path to success with Graph Database and Graph Data Science
The path to success with Graph Database and Graph Data Science
 
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
 
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 Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
 
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
 
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
 
The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...
The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...
The perfect couple: Uniting Large Language Models and Knowledge Graphs for En...
 
The Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdfThe Neo4j Data Platform for Today & Tomorrow.pdf
The Neo4j Data Platform for Today & Tomorrow.pdf
 
Workshop - Build a Graph Solution
Workshop - Build a Graph SolutionWorkshop - Build a Graph Solution
Workshop - Build a Graph Solution
 
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 & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptxNeo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
Neo4j & AWS Bedrock workshop at GraphSummit London 14 Nov 2023.pptx
 
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
 
The Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdfThe Data Platform for Today's Intelligent Applications.pdf
The Data Platform for Today's Intelligent Applications.pdf
 
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...
 
Discover Aura Workshop (12.5.23).pdf
Discover Aura Workshop (12.5.23).pdfDiscover Aura Workshop (12.5.23).pdf
Discover Aura Workshop (12.5.23).pdf
 
Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...
Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...
Neo4j GraphSummit London - The Path To Success With Graph Database and Data S...
 
Discover Neo4j Aura Workshop (9.27.23).pptx
Discover Neo4j Aura Workshop (9.27.23).pptxDiscover Neo4j Aura Workshop (9.27.23).pptx
Discover Neo4j Aura Workshop (9.27.23).pptx
 
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
 

More from Neo4j

GraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysisGraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysisNeo4j
 
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
KLARNA -  Language Models and Knowledge Graphs: A Systems ApproachKLARNA -  Language Models and Knowledge Graphs: A Systems Approach
KLARNA - Language Models and Knowledge Graphs: A Systems ApproachNeo4j
 
INGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignINGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignNeo4j
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jNeo4j
 
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptxBT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptxNeo4j
 
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit MilanWorkshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - 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 & Stockholm - Neo4j: The Art of the Possible with Graph
GraphSummit Milan & Stockholm - Neo4j: The Art of the Possible with GraphGraphSummit Milan & Stockholm - Neo4j: The Art of the Possible with Graph
GraphSummit Milan & Stockholm - 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
 
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
 

More from Neo4j (20)

GraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysisGraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysis
 
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
KLARNA -  Language Models and Knowledge Graphs: A Systems ApproachKLARNA -  Language Models and Knowledge Graphs: A Systems Approach
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
 
INGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignINGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by Design
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4j
 
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptxBT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
 
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit MilanWorkshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - 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 & Stockholm - Neo4j: The Art of the Possible with Graph
GraphSummit Milan & Stockholm - Neo4j: The Art of the Possible with GraphGraphSummit Milan & Stockholm - Neo4j: The Art of the Possible with Graph
GraphSummit Milan & Stockholm - 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
 
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
 

Recently uploaded

top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownloadvrstrong314
 
AI/ML Infra Meetup | ML explainability in Michelangelo
AI/ML Infra Meetup | ML explainability in MichelangeloAI/ML Infra Meetup | ML explainability in Michelangelo
AI/ML Infra Meetup | ML explainability in MichelangeloAlluxio, Inc.
 
Breaking the Code : A Guide to WhatsApp Business API.pdf
Breaking the Code : A Guide to WhatsApp Business API.pdfBreaking the Code : A Guide to WhatsApp Business API.pdf
Breaking the Code : A Guide to WhatsApp Business API.pdfMeon Technology
 
Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)
Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)
Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)Gáspár Nagy
 
A Guideline to Gorgias to to Re:amaze Data Migration
A Guideline to Gorgias to to Re:amaze Data MigrationA Guideline to Gorgias to to Re:amaze Data Migration
A Guideline to Gorgias to to Re:amaze Data MigrationHelp Desk Migration
 
AI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAlluxio, Inc.
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
Agnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in KrakówAgnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in Krakówbim.edu.pl
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar
 
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?XfilesPro
 
Secure Software Ecosystem Teqnation 2024
Secure Software Ecosystem Teqnation 2024Secure Software Ecosystem Teqnation 2024
Secure Software Ecosystem Teqnation 2024Soroosh Khodami
 
Designing for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web ServicesDesigning for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web ServicesKrzysztofKkol1
 
CompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdfCompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdfFurqanuddin10
 
10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdf10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdfkalichargn70th171
 
Benefits of Employee Monitoring Software
Benefits of  Employee Monitoring SoftwareBenefits of  Employee Monitoring Software
Benefits of Employee Monitoring SoftwareMera Monitor
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTier1 app
 
Studiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting softwareStudiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting softwareinfo611746
 
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdfA Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdfkalichargn70th171
 
iGaming Platform & Lottery Solutions by Skilrock
iGaming Platform & Lottery Solutions by SkilrockiGaming Platform & Lottery Solutions by Skilrock
iGaming Platform & Lottery Solutions by SkilrockSkilrock Technologies
 

Recently uploaded (20)

top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
AI/ML Infra Meetup | ML explainability in Michelangelo
AI/ML Infra Meetup | ML explainability in MichelangeloAI/ML Infra Meetup | ML explainability in Michelangelo
AI/ML Infra Meetup | ML explainability in Michelangelo
 
Breaking the Code : A Guide to WhatsApp Business API.pdf
Breaking the Code : A Guide to WhatsApp Business API.pdfBreaking the Code : A Guide to WhatsApp Business API.pdf
Breaking the Code : A Guide to WhatsApp Business API.pdf
 
Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)
Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)
Tree in the Forest - Managing Details in BDD Scenarios (live2test 2024)
 
A Guideline to Gorgias to to Re:amaze Data Migration
A Guideline to Gorgias to to Re:amaze Data MigrationA Guideline to Gorgias to to Re:amaze Data Migration
A Guideline to Gorgias to to Re:amaze Data Migration
 
AI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning Framework
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
Agnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in KrakówAgnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in Kraków
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
 
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
How Does XfilesPro Ensure Security While Sharing Documents in Salesforce?
 
Secure Software Ecosystem Teqnation 2024
Secure Software Ecosystem Teqnation 2024Secure Software Ecosystem Teqnation 2024
Secure Software Ecosystem Teqnation 2024
 
Designing for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web ServicesDesigning for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web Services
 
CompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdfCompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdf
 
Corporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMSCorporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMS
 
10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdf10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdf
 
Benefits of Employee Monitoring Software
Benefits of  Employee Monitoring SoftwareBenefits of  Employee Monitoring Software
Benefits of Employee Monitoring Software
 
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERRORTROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
TROUBLESHOOTING 9 TYPES OF OUTOFMEMORYERROR
 
Studiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting softwareStudiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting software
 
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdfA Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
 
iGaming Platform & Lottery Solutions by Skilrock
iGaming Platform & Lottery Solutions by SkilrockiGaming Platform & Lottery Solutions by Skilrock
iGaming Platform & Lottery Solutions by Skilrock
 

GraphSummit Milan - Visione e roadmap del prodotto Neo4j

  • 1. Neo4j Inc. All rights reserved 2024 Visione e roadmap del prodotto Neo4j Ivan Zoratti VP of Product Management
  • 2. Neo4j Inc. All rights reserved 2024 SAFE HARBOR ROADMAP DISCLAIMER The information presented here is Neo4j, Inc. confidential and does not constitute, and should not be construed as, a promise or commitment by Neo4j to develop, market or deliver any particular product, feature or function. Neo4j reserves the right to change its product plans or roadmap at any time, without obligation to notify any person of such changes. The timing and content of Neo4j’s future product releases could differ materially from the expectations discussed herein. 2
  • 4. Neo4j Product capabilities launched in 2023/2024 Neo4j Inc. All rights reserved 2024 5 ● 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
  • 5. Neo4j Inc. All rights reserved 2024 6 Cloud Scale • Procure through Aura Console or via Cloud Marketplace • Zero maintenance, automated upgrades and highly available • Scalable and elastic, on-demand • Enterprise-grade security • SOC II Type 2 compliance • Easier RBAC configuration with Aura Console • Private link • CMEK • Observability with Ops Manager, performance metrics and logs forwarding
  • 6. Customer Managed Keys (Encryption) 7 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.
  • 7. Customer Managed Keys (Encryption) 8
  • 8. Unified Product Experience 9 Neo4j Inc. All rights reserved 2024 Aura Console Graph Tools Ops Management
  • 9. Neo4j Inc. All rights reserved 2024 10 April 12, 2024 Welcome GQL! GQL - Graph Query Language The first new ISO language since 1987 GQL-fueled additions in Cypher: • Node and relationship expressions WHERE clause • Richer label expressions • Sophisticated pattern repetitions • SQL-like synonims • GQL Error codes • GQL is Here: Your Cypher Queries in a GQL World • GQL: The ISO Standard for Graphs Has Arrived • ISO GQL: A Defining Moment in the History of Database Innovation
  • 10. Neo4j Inc. All rights reserved 2024 11 New constraints on nodes, relationships and properties: ● Unique relationship property ● Relationship key ● Property data types NEO4J 5 NEW CAPABILITIES Graph Schema
  • 11. Graph Schema / Graph Type Neo4j Inc. All rights reserved 2024 12 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] ...
  • 12. Neo4j Inc. All rights reserved 2024 13 Graph Pattern Matching Improved expressivity of graph navigation with Quantified Path Patterns, a more powerful and performant syntax to navigate and traverse your graph.
  • 13. NEO4J 5.0 NEW CAPABILITIES Database Enhancements Graph Pattern Matching Example → Fraud Rings Neo4j Inc. All rights reserved 2024 14 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 accountNumber:2 amount: 1000 date: 2023-01-01T10:10:10.000+0000 accountNumber:1 amount: 900 date: 2023-01-02T10:10:10.000+0000 amount: 729 date: 2023-01-04T10:10:10.000+0000 accountNumber:4 accountNumber:3
  • 14. Neo4j Inc. All rights reserved 2024 15 Parallel Runtime Speed up analytical queries up to 100x
  • 15. Neo4j Inc. All rights reserved 2024 16 Parallel Runtime Speed up analytical queries up to 100x
  • 16. Neo4j Inc. All rights reserved 2024 17 Parallel Runtime Speed up analytical queries up to 100x MORE CORES
  • 17. Neo4j Inc. All rights reserved 2024 18 Parallel Runtime Speed up analytical queries up to 100x FASTER QUERIES MORE CORES
  • 18. Neo4j Inc. All rights reserved 2024 19 BLOCK FORMAT Memory Optimized and Future Proof An implementation of graph-native that’s informed by more than a decade of experience supporting real- world production graph workloads. Neo4j is still graph-first; block format is: • Native graph storage • Optimized for connected data • Index-free adjacency Block format supersedes all previous store formats. Migrate, convert, import into Block Format
  • 19. CHANGE DATA CAPTURE Automated Real-Time Change Tracking 20 Neo4j Inc. All rights reserved 2024
  • 20. Graph Data at Scale 21 Neo4j Inc. All rights reserved 2024 Autonomous Clustering Easy, automated horizontal scale- out Composite Databases Federated queries and sharded graphs
  • 21. Graph Data at Scale 22 Neo4j Inc. All rights reserved 2024
  • 22. Properties Sharding 23 Neo4j Inc. All rights reserved 2024 Users’ Connections TOPOLOGY DATABASE SHARDED PROPERTY DATABASES Parallel data load Rolling updates on demand
  • 23. AI Enabler Graph Data Science & Generative AI Neo4j Inc. All rights reserved 2024 24
  • 24. Knowledge Graphs + LLMs Facts Explicit Explainable Words Implicit Opaque KGs LLMs + Left Brain + Right Brain Neo4j Inc. All rights reserved 2024 25
  • 25. A Perfect Match Artificial Intelligence Machine Learning Information Architecture Data Architecture LLM Knowledge Graph Linguistic Pattern Matching Hierarchical Emergent Features Neo4j Inc. All rights reserved 2024 26
  • 26. Could this be vector search? Artificial Intelligence Machine Learning Information Architecture Data Architecture LLM Knowledge Graph Linguistic Pattern Matching Hierarchical Emergent Features Neo4j Inc. All rights reserved 2024 27
  • 27. Why RAG With Vector Databases Fall Short Similarity is insufficient for rich enterprise reasoning Neo4j Inc. All rights reserved 2024 28 1 3 2 4 Only leverage a fraction of your data: Beyond simple “metadata”, vector databases alone fail to capture relationships from structured data Miss critical context: Struggle to capture connections across nuanced facts, making it challenging to answer multi-step, domain-specific, questions Vector Similarity ≠ Relevance: Vector search uses an incomplete measure of similarity. Relying on it solely can result in irrelevant and duplicative results Lack explainability: The black-box nature of vectors lacks transparency and explainability
  • 28. 29 Neo4j Inc. All rights reserved 2024 DATA INFORMATION KNOWLEDGE INSIGHT MEANING records sets relationships patterns layers What is a Knowledge Graph? An information architecture with layered connections.
  • 29. RAG with Neo4j Neo4j Inc. All rights reserved 2024 30 Find similar documents, content and data Expanded context for related information and ranking results Improve GenAI inferences and insights. Discover new relationships and entities Unified search, knowledge graph and data science capabilities to improve RAG quality and effectiveness Vector Search, Full-text Search, Geospatial, Pattern match Data Science Knowledge Graph
  • 30. Knowledge Graph Complementary Benefits LLM Human Application Knowledge Graph Extend LLM knowledge through RAG Invite human exploration & curation Advanced application features & analysis Neo4j Inc. All rights reserved 2024 31
  • 31. 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph Neo4j Inc. All rights reserved 2024 32
  • 32. Neo4j Inc. All rights reserved 2024 33 Knowledge Graph Construction with Cypher Templates
  • 33. Graph Builder Neo4j Inc. All rights reserved 2024 34
  • 34. Human 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph 2 RAG-based Chat Applications Neo4j Inc. All rights reserved 2024 35
  • 35. Neo4j Inc. All rights reserved 2024 36 Natural Language Search combining explicit and implicit relationships
  • 36. Neo4j Inc. All rights reserved 2024 37 Browser Co-Pilot • Uses Text2Cypher model provided by LLM API service layer • UI/UX improvements underway for surfacing the copilot feature in Query • Soon to be available in Workspace / UPX
  • 37. Application Human 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph 2 RAG-based Chat Applications 3 RAG-enhanced General Applications Neo4j Inc. All rights reserved 2024 38
  • 38. Neo4j Inc. All rights reserved 2024 39 Natural Language assistants and co- pilots, rooted in business policy Prompt + Relevant Information Embedding API LLM API User Database Search Prompt Response Relevant Results Knowledge Graph Application
  • 39. ● Integrate Neo4j with leading LLM open-source frameworks such as LangChain and LlamaIndex ● Call LLM APIs natively via Cypher using our open-source APOC library ● Agnostic LLM orchestration connecting graphs to OpenAI, AWS Bedrock, GCP Vertex AI, Azure, Anthropic, Hugging Face, and other proprietary and open source foundation models Integrate with the GenAI Ecosystem Neo4j Inc. All rights reserved 2024 40 GenAI Stack Application Generative AI & Embedding Models Orchestration Grounding Knowledge Graph Neo4j GenAI Integrations Text | Chat | Embedding NL Query | Image Gen Neo4j Drivers Python JavaScript Java Neo4jGraph Neo4jVector GraphCypherQAChain Neo4jGraphStore Neo4jVectorStore KnowledgeGraphIndex
  • 40. ● Co-Pilot in Neo4j Browser for autocomplete & Cypher generation ● Bloom & NeoDash NL integration ● More framework integrations: ﹣ Langchain, LlamaIndex, SemanticKernel, Spring.AI, Haystack POWERING GENERATIVE AI APPS Neo4j’s GenAI Roadmap Neo4j Inc. All rights reserved 2024 41 Coming 2024+
  • 41. Neo4j Inc. All rights reserved 2024 42 Grazie! ivan@neo4j.com Follow us! @neo4j