SlideShare a Scribd company logo
Neo4j Inc. All rights reserved 2024
Neo4j Product Vision
and Roadmap
David Pond
Lead Product Manager
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
Neo4j
Ops Manager
Neo4j Inc. All rights reserved 2024
9
Unified Product Experience
10 Neo4j Inc. All rights reserved 2024
Aura Console
Graph Tools
Ops
Management
Improvements in Bloom / Explore
Neo4j Inc. All rights reserved 2024
Neo4j Inc. All rights reserved 2024
Data Slicer
GDS Algos
Neo4j Inc. All rights reserved 2024
12
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
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
New constraints on nodes,
relationships and properties:
● Node/Relationship unique
property
● Node/Relationship property
existence and type
● Node/Relationship keys
NEO4J 5 NEW CAPABILITIES
Graph Schema
Graph Schema / Graph Type
Neo4j Inc. All rights reserved 2024
16
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
17
Parallel Runtime
Speed up
analytical
queries up to
100x
Neo4j Inc. All rights reserved 2024
18
Parallel Runtime
Speed up
analytical
queries up to
100x
Neo4j Inc. All rights reserved 2024
19
Parallel Runtime
Speed up
analytical
queries up to
100x MORE CORES
Neo4j Inc. All rights reserved 2024
20
Parallel Runtime
Speed up
analytical
queries up to
100x
FASTER
QUERIES
MORE CORES
Neo4j Inc. All rights reserved 2024
21
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
22 Neo4j Inc. All rights reserved 2024
Graph Data at Scale
23 Neo4j Inc. All rights reserved 2024
Autonomous Clustering
Easy, automated horizontal scale-
out
Composite Databases
Federated queries and sharded graphs
Graph Data at Scale
24 Neo4j Inc. All rights reserved 2024
Properties Sharding
25 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
26
Neo4j Inc. All rights reserved 2024
© 2023 Neo4j, Inc. All rights reserved. 27
Knowledge
Graphs
and GenAI
How can you use domain-
specific knowledge to
rapidly build accurate,
contextual, and
explainable GenAI
applications?
Neo4j Inc. All rights reserved 2023
Neo4j Inc. All rights reserved 2024
28
Knowledge Graphs + LLMs
28
Facts
Explicit
Explainable
Words
Implicit
Opaque
KGs LLMs
+
Left Brain + Right Brain
Retrieval Augmented Generation (GraphRAG)
Vector + Graph Search
Neo4j Inc. All rights reserved 2024
29
● avoid hallucinations
● ignore LLM training data
● only use language skills
● fetch relevant information from
reliable (enterprise) datasources
● often uses vector and/or full-text
search for starting points
● use context from knowledge graph
Graph + Vector = Semantic Search
Neo4j Inc. All rights reserved 2024
30
Find similar documents.
Find related information.
Combine for more
accurate results within a
relevant context.
Vector Index
Graph Structure
Knowledge Graph
Similarity Search
Pattern Matching
31
What is a Knowledge Graph?
An information architecture with layered connections.
Or a digital twin of reality or your organization.
Neo4j Inc. All rights reserved 2024
DATA INFORMATION KNOWLEDGE INSIGHT MEANING
records sets relationships patterns layers
RAG with Neo4j
Neo4j Inc. All rights reserved 2024
32
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
Neo4j Inc. All rights reserved 2023
Neo4j Inc. All rights reserved 2024
33
Knowledge Graph Complementary Benefits
33
LLM
Human
Application
Knowledge
Graph
Extend LLM
knowledge
through RAG
Invite human
exploration &
curation
Advanced
application
features & analysis
Neo4j Inc. All rights reserved 2024
34
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
neo4j.com/labs/genai-ecosystem/llm-graph-builder
Neo4j Inc. All rights reserved 2024
35
Knowledge Graph
Construction with
Cypher Templates
Neo4j Inc. All rights reserved 2024
36
Knowledge Graph Construction
neo4j.com/labs/genai-ecosystem/llm-graph-builder
Neo4j Inc. All rights reserved 2024
Human
37
1 Knowledge Graph Construction
Gen AI use cases LLM
Knowledge
Graph
2 RAG-based Chat Applications
neo4j.com/labs/genai-ecosystem/rag-demo/
Neo4j Inc. All rights reserved 2024
38
Natural Language
Search combining
explicit and implicit
relationships
Neo4j Inc. All rights reserved 2024
39
RAG-based Chat Applications
neo4j.com/labs/genai-ecosystem/rag-demo/
Neo4j Inc. All rights reserved 2024
Application Human
40
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
41
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,
LlamaIndex & More
● Call LLM APIs natively via Cypher using
product integration or open-source APOC
(extended) 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
42
GenAI Stack
Application
Generative AI & Embedding Models
Orchestration
Grounding Knowledge Graph
Neo4jGraph
Neo4jVector
GraphCypherQAChai
n
Neo4jGraphStore
Neo4jVectorStore
KnowledgeGraphIndex
Neo4j GenAI Integrations
Text | Chat | Embedding
NL Query | Image Gen
Neo4j Drivers
Java
Python JavaScript
neo4j.com/labs/genai-ecosystem
POWERING GENERATIVE AI APPS
Neo4j’s GenAI Roadmap
● Co-Pilots & integrations in Neo4j Browser, Bloom,
Data Importer, NeoDash, Docs
● Cloud Integrations: GCP Vertex AI, AWS Bedrock,
Azure OpenAI
● Scalable and integrated Vector Search, additional
Graph Embeddings
● GraphRAG eval framework
● More framework integrations: Langchain,
LlamaIndex, SemanticKernel, Spring.AI, Haystack
Neo4j Inc. All rights reserved 2024
43
Coming 2024+
● Parallel Runtime for faster analytical Queries
● Block Format for efficient and future proof graph
storage
● Change Data Capture (CDC) better data integration
● Autonomous clustering and Composite Database for
limitless scalability
● Graph Schema, Improved Backup recovery,
incremental import
● Neo4j Ops Manager for managing databases
● Aura Database on all clouds (AWS, GCP, Azure)
● SOC II Type 2 & HIPAA compliance, AuraDB APIs,
RBAC configuration
● Better observability with security log forwarding
Performance metrics forwarding (EAP)
● Private Link & CMEK
Neo4j product capabilities launched in 2023/24
Neo4j Inc. All rights reserved 2024
44
● Unified Developer Experience with Neo4j Workspace
● Quantified Graph Pattern Matching
● Call in Transactions
● Self-service Data Import (more coming soon)
● GraphQL Support
● Simplified Drivers API
● Bloom support for Graph Data Science algorithms
● Graph Data Science Client
● Knowledge Graph Embeddings
● Vector Index, similarity search & vector similarity
● Real Time integration with Embedding APIs & LLM
Models
● GenAI Integrations (OpenAI + MS Azure OpenAI,
VertexAI, AWS Bedrock, Langchain(Python & JS),
LlamaIndex, Haystack, Spring AI, LangChain4j)
Neo4j Inc. All rights reserved 2024
45
Follow us!
@neo4j
Enjoy
GraphSummit
Stockholm
david.pond@neo4j.com

More Related Content

Similar to GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates

Neo4j: The path to success with Graph Database and Graph Data Science
Neo4j: The path to success with Graph Database and Graph Data ScienceNeo4j: The path to success with Graph Database and Graph Data Science
Neo4j: The path to success with Graph Database and Graph Data Science
Neo4j
 
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
 
The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...
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
 
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
Neo4j
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!
Neo4j
 
Roadmap y Novedades de producto
Roadmap y Novedades de productoRoadmap y Novedades de producto
Roadmap y Novedades de producto
Neo4j
 
Neo4j Vision and Roadmap
Neo4j Vision and Roadmap Neo4j Vision and Roadmap
Neo4j Vision and Roadmap
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
Neo4j
 
Roadmap for Enterprise Graph Strategy
Roadmap for Enterprise Graph StrategyRoadmap for Enterprise Graph Strategy
Roadmap for Enterprise Graph Strategy
Neo4j
 
Atelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissancesAtelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissances
Neo4j
 
Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...
Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...
Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...
nimak
 
Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph StrategyYour Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy
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 Milan
Neo4j
 
Graphes de connaissances avec Neo4j
Graphes de connaissances avec Neo4j Graphes de connaissances avec Neo4j
Graphes de connaissances avec Neo4j
Neo4j
 
Neo4j Aura on AWS: The Customer Choice for Graph Databases
Neo4j Aura on AWS: The Customer Choice for Graph DatabasesNeo4j Aura on AWS: The Customer Choice for Graph Databases
Neo4j Aura on AWS: The Customer Choice for Graph Databases
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.pptx
Neo4j
 
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
Neo4j
 
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Neo4j
 
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
 

Similar to GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates (20)

Neo4j: The path to success with Graph Database and Graph Data Science
Neo4j: The path to success with Graph Database and Graph Data ScienceNeo4j: The path to success with Graph Database and Graph Data Science
Neo4j: The path to success with Graph Database and Graph Data Science
 
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
 
The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...The path to success with graph database and graph data science_ Neo4j GraphSu...
The path to success with graph database and graph data science_ Neo4j GraphSu...
 
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 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
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!
 
Roadmap y Novedades de producto
Roadmap y Novedades de productoRoadmap y Novedades de producto
Roadmap y Novedades de producto
 
Neo4j Vision and Roadmap
Neo4j Vision and Roadmap Neo4j Vision and Roadmap
Neo4j Vision and Roadmap
 
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
 
Roadmap for Enterprise Graph Strategy
Roadmap for Enterprise Graph StrategyRoadmap for Enterprise Graph Strategy
Roadmap for Enterprise Graph Strategy
 
Atelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissancesAtelier - Innover avec l’IA Générative et les graphes de connaissances
Atelier - Innover avec l’IA Générative et les graphes de connaissances
 
Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...
Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...
Cross-Tier Application and Data Partitioning of Web Applications for Hybrid C...
 
Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph StrategyYour Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy
 
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
 
Graphes de connaissances avec Neo4j
Graphes de connaissances avec Neo4j Graphes de connaissances avec Neo4j
Graphes de connaissances avec Neo4j
 
Neo4j Aura on AWS: The Customer Choice for Graph Databases
Neo4j Aura on AWS: The Customer Choice for Graph DatabasesNeo4j Aura on AWS: The Customer Choice for Graph Databases
Neo4j Aura on AWS: The Customer Choice for Graph Databases
 
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
 
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
 
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
Discover Neo4j Aura_ The Future of Graph Database-as-a-Service Workshop_3.13.24
 
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...
 

More from Neo4j

Atelier - Architecture d’applications de Graphes - GraphSummit Paris
Atelier - Architecture d’applications de Graphes - GraphSummit ParisAtelier - Architecture d’applications de Graphes - GraphSummit Paris
Atelier - Architecture d’applications de Graphes - GraphSummit Paris
Neo4j
 
FLOA - Détection de Fraude - GraphSummit Paris
FLOA -  Détection de Fraude - GraphSummit ParisFLOA -  Détection de Fraude - GraphSummit Paris
FLOA - Détection de Fraude - GraphSummit Paris
Neo4j
 
SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...
SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...
SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...
Neo4j
 
ADEO - Knowledge Graph pour le e-commerce, entre challenges et opportunités ...
ADEO -  Knowledge Graph pour le e-commerce, entre challenges et opportunités ...ADEO -  Knowledge Graph pour le e-commerce, entre challenges et opportunités ...
ADEO - Knowledge Graph pour le e-commerce, entre challenges et opportunités ...
Neo4j
 
GraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph TechnologyGraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph Technology
Neo4j
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
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 analysis
Neo4j
 
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
Neo4j
 
INGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignINGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by Design
Neo4j
 
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
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
Neo4j
 
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
Neo4j
 
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 Graph
Neo4j
 
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 Ibrida
Neo4j
 
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
 

More from Neo4j (20)

Atelier - Architecture d’applications de Graphes - GraphSummit Paris
Atelier - Architecture d’applications de Graphes - GraphSummit ParisAtelier - Architecture d’applications de Graphes - GraphSummit Paris
Atelier - Architecture d’applications de Graphes - GraphSummit Paris
 
FLOA - Détection de Fraude - GraphSummit Paris
FLOA -  Détection de Fraude - GraphSummit ParisFLOA -  Détection de Fraude - GraphSummit Paris
FLOA - Détection de Fraude - GraphSummit Paris
 
SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...
SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...
SOPRA STERIA - GraphRAG : repousser les limitations du RAG via l’utilisation ...
 
ADEO - Knowledge Graph pour le e-commerce, entre challenges et opportunités ...
ADEO -  Knowledge Graph pour le e-commerce, entre challenges et opportunités ...ADEO -  Knowledge Graph pour le e-commerce, entre challenges et opportunités ...
ADEO - Knowledge Graph pour le e-commerce, entre challenges et opportunités ...
 
GraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph TechnologyGraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph Technology
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
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...
 

Recently uploaded

GreenCode-A-VSCode-Plugin--Dario-Jurisic
GreenCode-A-VSCode-Plugin--Dario-JurisicGreenCode-A-VSCode-Plugin--Dario-Jurisic
GreenCode-A-VSCode-Plugin--Dario-Jurisic
Green Software Development
 
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdfTop Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
VALiNTRY360
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
ICS
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
ToXSL Technologies
 
openEuler Case Study - The Journey to Supply Chain Security
openEuler Case Study - The Journey to Supply Chain SecurityopenEuler Case Study - The Journey to Supply Chain Security
openEuler Case Study - The Journey to Supply Chain Security
Shane Coughlan
 
Automated software refactoring with OpenRewrite and Generative AI.pptx.pdf
Automated software refactoring with OpenRewrite and Generative AI.pptx.pdfAutomated software refactoring with OpenRewrite and Generative AI.pptx.pdf
Automated software refactoring with OpenRewrite and Generative AI.pptx.pdf
timtebeek1
 
UI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design SystemUI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design System
Peter Muessig
 
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CDKuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
rodomar2
 
Microservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we workMicroservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we work
Sven Peters
 
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Crescat
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
Peter Muessig
 
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative AnalysisOdoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Envertis Software Solutions
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
SOCRadar
 
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s EcosystemUI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
Peter Muessig
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
Remote DBA Services
 
Transform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR SolutionsTransform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR Solutions
TheSMSPoint
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
Octavian Nadolu
 
Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)
Julian Hyde
 
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdfVitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
Green Software Development
 

Recently uploaded (20)

GreenCode-A-VSCode-Plugin--Dario-Jurisic
GreenCode-A-VSCode-Plugin--Dario-JurisicGreenCode-A-VSCode-Plugin--Dario-Jurisic
GreenCode-A-VSCode-Plugin--Dario-Jurisic
 
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdfTop Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
 
openEuler Case Study - The Journey to Supply Chain Security
openEuler Case Study - The Journey to Supply Chain SecurityopenEuler Case Study - The Journey to Supply Chain Security
openEuler Case Study - The Journey to Supply Chain Security
 
Automated software refactoring with OpenRewrite and Generative AI.pptx.pdf
Automated software refactoring with OpenRewrite and Generative AI.pptx.pdfAutomated software refactoring with OpenRewrite and Generative AI.pptx.pdf
Automated software refactoring with OpenRewrite and Generative AI.pptx.pdf
 
UI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design SystemUI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design System
 
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CDKuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
 
Microservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we workMicroservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we work
 
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
 
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative AnalysisOdoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
 
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s EcosystemUI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
 
Transform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR SolutionsTransform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR Solutions
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
 
Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)
 
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdfVitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdf
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
 

GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates

  • 1. Neo4j Inc. All rights reserved 2024 Neo4j Product Vision and Roadmap David Pond Lead Product Manager
  • 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. Neo4j Ops Manager Neo4j Inc. All rights reserved 2024 9
  • 9. Unified Product Experience 10 Neo4j Inc. All rights reserved 2024 Aura Console Graph Tools Ops Management
  • 10. Improvements in Bloom / Explore Neo4j Inc. All rights reserved 2024 Neo4j Inc. All rights reserved 2024 Data Slicer GDS Algos
  • 11. Neo4j Inc. All rights reserved 2024 12 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
  • 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 New constraints on nodes, relationships and properties: ● Node/Relationship unique property ● Node/Relationship property existence and type ● Node/Relationship keys NEO4J 5 NEW CAPABILITIES Graph Schema
  • 15. Graph Schema / Graph Type Neo4j Inc. All rights reserved 2024 16 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] ...
  • 16. Neo4j Inc. All rights reserved 2024 17 Parallel Runtime Speed up analytical queries up to 100x
  • 17. Neo4j Inc. All rights reserved 2024 18 Parallel Runtime Speed up analytical queries up to 100x
  • 18. Neo4j Inc. All rights reserved 2024 19 Parallel Runtime Speed up analytical queries up to 100x MORE CORES
  • 19. Neo4j Inc. All rights reserved 2024 20 Parallel Runtime Speed up analytical queries up to 100x FASTER QUERIES MORE CORES
  • 20. Neo4j Inc. All rights reserved 2024 21 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
  • 21. CHANGE DATA CAPTURE Automated Real-Time Change Tracking 22 Neo4j Inc. All rights reserved 2024
  • 22. Graph Data at Scale 23 Neo4j Inc. All rights reserved 2024 Autonomous Clustering Easy, automated horizontal scale- out Composite Databases Federated queries and sharded graphs
  • 23. Graph Data at Scale 24 Neo4j Inc. All rights reserved 2024
  • 24. Properties Sharding 25 Neo4j Inc. All rights reserved 2024 Users’ Connections TOPOLOGY DATABASE SHARDED PROPERTY DATABASES Parallel data load Rolling updates on demand
  • 25. AI Enabler Graph Data Science & Generative AI Neo4j Inc. All rights reserved 2024 26
  • 26. Neo4j Inc. All rights reserved 2024 © 2023 Neo4j, Inc. All rights reserved. 27 Knowledge Graphs and GenAI How can you use domain- specific knowledge to rapidly build accurate, contextual, and explainable GenAI applications?
  • 27. Neo4j Inc. All rights reserved 2023 Neo4j Inc. All rights reserved 2024 28 Knowledge Graphs + LLMs 28 Facts Explicit Explainable Words Implicit Opaque KGs LLMs + Left Brain + Right Brain
  • 28. Retrieval Augmented Generation (GraphRAG) Vector + Graph Search Neo4j Inc. All rights reserved 2024 29 ● avoid hallucinations ● ignore LLM training data ● only use language skills ● fetch relevant information from reliable (enterprise) datasources ● often uses vector and/or full-text search for starting points ● use context from knowledge graph
  • 29. Graph + Vector = Semantic Search Neo4j Inc. All rights reserved 2024 30 Find similar documents. Find related information. Combine for more accurate results within a relevant context. Vector Index Graph Structure Knowledge Graph Similarity Search Pattern Matching
  • 30. 31 What is a Knowledge Graph? An information architecture with layered connections. Or a digital twin of reality or your organization. Neo4j Inc. All rights reserved 2024 DATA INFORMATION KNOWLEDGE INSIGHT MEANING records sets relationships patterns layers
  • 31. RAG with Neo4j Neo4j Inc. All rights reserved 2024 32 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
  • 32. Neo4j Inc. All rights reserved 2023 Neo4j Inc. All rights reserved 2024 33 Knowledge Graph Complementary Benefits 33 LLM Human Application Knowledge Graph Extend LLM knowledge through RAG Invite human exploration & curation Advanced application features & analysis
  • 33. Neo4j Inc. All rights reserved 2024 34 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph neo4j.com/labs/genai-ecosystem/llm-graph-builder
  • 34. Neo4j Inc. All rights reserved 2024 35 Knowledge Graph Construction with Cypher Templates
  • 35. Neo4j Inc. All rights reserved 2024 36 Knowledge Graph Construction neo4j.com/labs/genai-ecosystem/llm-graph-builder
  • 36. Neo4j Inc. All rights reserved 2024 Human 37 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph 2 RAG-based Chat Applications neo4j.com/labs/genai-ecosystem/rag-demo/
  • 37. Neo4j Inc. All rights reserved 2024 38 Natural Language Search combining explicit and implicit relationships
  • 38. Neo4j Inc. All rights reserved 2024 39 RAG-based Chat Applications neo4j.com/labs/genai-ecosystem/rag-demo/
  • 39. Neo4j Inc. All rights reserved 2024 Application Human 40 1 Knowledge Graph Construction Gen AI use cases LLM Knowledge Graph 2 RAG-based Chat Applications 3 RAG-enhanced General Applications
  • 40. Neo4j Inc. All rights reserved 2024 41 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
  • 41. ● Integrate Neo4j with leading LLM open- source frameworks such as LangChain, LlamaIndex & More ● Call LLM APIs natively via Cypher using product integration or open-source APOC (extended) 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 42 GenAI Stack Application Generative AI & Embedding Models Orchestration Grounding Knowledge Graph Neo4jGraph Neo4jVector GraphCypherQAChai n Neo4jGraphStore Neo4jVectorStore KnowledgeGraphIndex Neo4j GenAI Integrations Text | Chat | Embedding NL Query | Image Gen Neo4j Drivers Java Python JavaScript neo4j.com/labs/genai-ecosystem
  • 42. POWERING GENERATIVE AI APPS Neo4j’s GenAI Roadmap ● Co-Pilots & integrations in Neo4j Browser, Bloom, Data Importer, NeoDash, Docs ● Cloud Integrations: GCP Vertex AI, AWS Bedrock, Azure OpenAI ● Scalable and integrated Vector Search, additional Graph Embeddings ● GraphRAG eval framework ● More framework integrations: Langchain, LlamaIndex, SemanticKernel, Spring.AI, Haystack Neo4j Inc. All rights reserved 2024 43 Coming 2024+
  • 43. ● Parallel Runtime for faster analytical Queries ● Block Format for efficient and future proof graph storage ● Change Data Capture (CDC) better data integration ● Autonomous clustering and Composite Database for limitless scalability ● Graph Schema, Improved Backup recovery, incremental import ● Neo4j Ops Manager for managing databases ● Aura Database on all clouds (AWS, GCP, Azure) ● SOC II Type 2 & HIPAA compliance, AuraDB APIs, RBAC configuration ● Better observability with security log forwarding Performance metrics forwarding (EAP) ● Private Link & CMEK Neo4j product capabilities launched in 2023/24 Neo4j Inc. All rights reserved 2024 44 ● Unified Developer Experience with Neo4j Workspace ● Quantified Graph Pattern Matching ● Call in Transactions ● Self-service Data Import (more coming soon) ● GraphQL Support ● Simplified Drivers API ● Bloom support for Graph Data Science algorithms ● Graph Data Science Client ● Knowledge Graph Embeddings ● Vector Index, similarity search & vector similarity ● Real Time integration with Embedding APIs & LLM Models ● GenAI Integrations (OpenAI + MS Azure OpenAI, VertexAI, AWS Bedrock, Langchain(Python & JS), LlamaIndex, Haystack, Spring AI, LangChain4j)
  • 44. Neo4j Inc. All rights reserved 2024 45 Follow us! @neo4j Enjoy GraphSummit Stockholm david.pond@neo4j.com