SlideShare una empresa de Scribd logo
1 de 43
Descargar para leer sin conexión
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
Introduction to Bloom
Soham Dhodapkar
Field Engineering
@SohamDhodapkar
dev.neo4j.com/forum
dev.neo4j.com/chat
discord.com/invite/neo4j
Neo4j, Inc. All rights reserved 2021
• Very hands on - you will be diving into Bloom to do everything from setting
it up, to exploring the data, to doing edits and changes!
• We will be importing a data set, so we will be using Cypher, but don’t
panic! We’ll give you the queries
2
Overview of the training
Neo4j, Inc. All rights reserved 2021
3
Overview of Bloom
Neo4j, Inc. All rights reserved 2021
Where is Bloom available?
• Neo4j Aura
• Neo4j Sandbox
• Neo4j Desktop
• As a plugin for Neo4j Server
Neo4j, Inc. All rights reserved 2021
There are two other components we’ll be visiting as part of the session:
• We recommend using Neo4j Sandbox for this session
◦ You may also use Neo4j Aura Free
• Neo4j Browser:
◦ We’ll use this to load our data
5
(A Brief) Introduction to Neo4j Aura and Browser
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
6
Getting up and running on Neo4j
Aura Free
Neo4j, Inc. All rights reserved 2021
Kaggle Olympics Data Set
• Summer and Winter Olympics from 1896 to
2016
• Source:
www.kaggle.com/heesoo37/120-years-of-oly
mpic-history-athletes-and-results
• We’re only using the Winter Games
All queries, data, etc.:
dev.neo4j.com/bloom-training-repo
7
Introduction to the data set
Neo4j, Inc. All rights reserved 2021
Setting up the database
Use Neo4j Sandbox:
• Go to dev.neo4j.com/try
• Sign in & click “Blank sandbox”
For Neo4j Aura Free:
• Go to dev.neo4j.com/aura-login
• Sign in & click “Create a database”
• Give your database a name
• Click “Create Database”
• Make a copy of the generated password - keep it safe!
Neo4j, Inc. All rights reserved 2021
Loading the data
• Copy all the queries from: http://dev.neo4j.com/bloom-training-1
• Click on open/Neo4j Browser to start the Browser
◦ Username: neo4j
• Paste the query into the query window and press the play button to start
• Don’t panic! We’ll do it together :)
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
10
Setting up the Perspective
Neo4j, Inc. All rights reserved 2021
11
Tour of Bloom
Neo4j, Inc. All rights reserved 2021
12
Tour of Bloom
Neo4j, Inc. All rights reserved 2021
13
Tour of Bloom
Neo4j, Inc. All rights reserved 2021
14
Tour of Bloom
Neo4j, Inc. All rights reserved 2021
When Bloom loads for the first time:
• Bloom will show all existing perspectives, and also offer to automatically
generate one
• Bloom’s analysis looks for disjointed sets within the label set (e.g. Person,
American, Employee, Customer, etc.) and try and group together
• Indexes on properties will enable searching on those directly
15
Getting started in Bloom
Neo4j, Inc. All rights reserved 2021
• Start the Bloom App
• You will be prompted to auto-generate
• Explore the auto-generated perspective:
◦ What categories have been loaded?
◦ What category properties have been selected to display?
• Try creating your own perspective:
◦ Click on ‘Choose a Perspective’ --> ’Create a Perspective’
◦ Add the categories
◦ Select properties to display
• Switch back to the auto-generated perspective
16
Your turn - create a perspective for the data set
Neo4j, Inc. All rights reserved 2021
You can explore your data by specifying:
• A property name
• A category
• A relationship type
You can further examine a node by:
• Double-clicking to bring up Card List
• Explore properties, relationships and
neighbors
17
Simple searches in Bloom
Neo4j, Inc. All rights reserved 2021
Look up Maxime Dufour-Lapointe:
• Explore the information about Maxime Dufour-Lapointe using the Card
List
• Try right-clicking the node and expand
◦ What more do we learn about Maxime Dufour-Lapointe?
◦ Expanding the Team node (cross-check the colour with the Category list on
the right), what more do we learn?
18
Your turn - tell me more about...
Neo4j, Inc. All rights reserved 2021
As well as assigning categories and properties, we can further configure the
perspective:
• We can exclude nodes and relationships completely
• We can add search phrases for commonly-executed queries (more on
that later)
• Once we’re finished configuring the perspective, we can export, import
and share it
19
Configuring Bloom
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
20
Bloom patterns and exploring the
data
Neo4j, Inc. All rights reserved 2021
As well as specifying a name/item/thing, we can express patterns consisting of
categories and relationships
E.g: Maxime Dufour-Lapointe part of Team competed in Event
or Maxime Dufour-Lapointe part of Team Event
or Maxime Dufour-Lapointe Team Event
or Maxime Dufour-Lapointe part of competed in
You don’t have to put all the relationships and Events, Bloom will fill the gaps
for you!
21
Building patterns
Neo4j, Inc. All rights reserved 2021
How would you find the answer to:
• What Olympic games was Yelena Dubok a part of?
How many different patterns can you come up with that provide the answer?
22
Your turn - mind the gap
Neo4j, Inc. All rights reserved 2021
We can start to build some interesting patterns when we understand the
model. We can:
• Search paths between two points
• Find hierarchies and dependencies
• Find more than one occurrence of something
23
Building upon patterns
Neo4j, Inc. All rights reserved 2021
Reveal different properties across a specific set of relationships and nodes
from a set start and end point
E.g. Elizabeth Lee "Beth" Heiden part of Team participated in Games
participated in Team part of Eric Arthur Heiden
24
Search paths between two points
Neo4j, Inc. All rights reserved 2021
Finding the occurrence of two or more Categories/Properties
Can be a single hop:
E.g. Games City Games
Can be across several hops:
E.g. Games Team Athlete Team Games
25
Finding more than one occurrence
Neo4j, Inc. All rights reserved 2021
We can also apply more fine-grained control in our Bloom phrases via the
properties that don’t have indexes
E.g. Games year 1972
Be aware this is case sensitive!
Accessing properties
Neo4j, Inc. All rights reserved 2021
• How many gold medals has Claudia Pechstein
won?
• How many teams has Lamine Guye been in?
• Can you find some athletes that have
represented more than one country?
• What different ways are Olivier Jenot and
• Patrice Servelle linked? (hint: think about the
paths that may link them)
27
Your turn - time to answer some questions!
Neo4j, Inc. All rights reserved 2021
We will from time to time want to hide/show parts of our results
We can select and deselect nodes to show:
• Shortest path
• Expand nodes
• Dismiss nodes
• Select an area
• Select a category
28
Interacting with the Workspace
Neo4j, Inc. All rights reserved 2021
We want to show just the athletes that have won more than one Gold Medal.
How would you display only the result nodes we’re interested in?
Have you noticed something else? Don’t worry if you haven’t, we’ll discuss it
shortly.
29
Your turn - just the athletes, please
Neo4j, Inc. All rights reserved 2021
Only 150-ish athletes are brought back that have won more than one gold
medal/more teams than athletes...
• Bloom uses internal limits to improve performance
• This may result in only a sample of data being returned
• You can adjust the limits in the settings
◦ Increasing the limit to 1200 brings back 580-ish athletes
30
A note on limits
Neo4j, Inc. All rights reserved 2021
Search phrases are a way of adding tailored, complex querying to Bloom, via
a user-friendly and intuitive phrase.
They can be extremely helpful:
• We can use search phrases for commonly-used patterns
• They can form the basis for production-ready common queries
• Provide helper functions
31
Search phrases
Neo4j, Inc. All rights reserved 2021
Wouldn’t it be nice to find Athletes without knowing their middle names? Let’s
add a search phrase for that!
• Add search phrases to find names
◦ Cypher code from: dev.neo4j.com/bloom-training-2
• Test out your search phrases!
32
Your turn - creating search phrases
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
33
Editing data in bloom
Neo4j, Inc. All rights reserved 2021
We also have some basic editing options available to us in Bloom. We can:
• Edit properties
• Duplicate nodes
• Create new nodes
• Create relationships between nodes
• Change labels
34
Editing the data
Neo4j, Inc. All rights reserved 2021
• Add a relationship between City and Country for Cities that have held the
Olympics more than once
• Feel free to search the City locations if you don’t know them off hand :)
35
Your turn - where are those cities?
Neo4j, Inc. All rights reserved 2021
This is only possible whilst you have write access to Neo4j. If you do not, you
will not be able to take advantage of these features
Other editing constraints:
• You can only create existing relationship types
• You cannot delete relationships or nodes
• You can only add existing properties
• You can only add properties to existing categories/labels
36
Note on editing
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
Customizing and applying
rule-based styling
Neo4j, Inc. All rights reserved 2021
Your visualization, your way!
As well as tailoring what properties, nodes and relationships we do or do not
show, we can also:
• Add icons for nodes
• Change the default colors and sizes for nodes and relationships
• Add rule-based, dynamic styling for color and size based on:
◦ Existence conditions
◦ A specific range for properties
◦ Uniqueness of property values
Neo4j, Inc. All rights reserved 2021
Your turn - who’s the most connected athlete?
We are going to use the Page Rank scores we have on Athlete to Athlete,
based on shared Teams.
First of all, why not add some appropriate icons for all the nodes in use?
Using the dynamic sizing option, use the smallest and largest node sizes
possible. The following range values may be useful:
• Min value: 0.15
• Max value: 4.85
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
So how do I continue my graph
journey?
Neo4j, Inc. All rights reserved 2021
More training this week - all starting at 1pm UTC
Thursday: Build APIs with Neo4j GraphQL Library
Friday: Create a Knowledge Graph: A Simple ML Approach
Missed the previous sessions? Catch up now!
https://dev.neo4j.com/training-catchup
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
Free online training and
certification:
• dev.neo4j.com/learn
How to, best practices, hands on
and community stories:
• dev.neo4j.com/videos
Come say hello :)
• dev.neo4j.com/chat
• dev.neo4j.com/forum
Continue your journey
Neo4j, Inc. All rights reserved 2021
Neo4j, Inc. All rights reserved 2021
Soham Dhodapkar
Field Engineering
@SohamDhodapkar
soham@neo4j.com
Join the conversation at dev.neo4j.com/forum

Más contenido relacionado

Similar a Training Week: Introduction to Neo4j Bloom

Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsNeo4j
 
Neo4j in a Microsoft Shop
Neo4j in a Microsoft ShopNeo4j in a Microsoft Shop
Neo4j in a Microsoft ShopNeo4j
 
Training Series - Intro to Neo4j
Training Series - Intro to Neo4jTraining Series - Intro to Neo4j
Training Series - Intro to Neo4jNeo4j
 
Graph Data Modeling Best Practices(Eric_Monk).pptx
Graph Data Modeling Best Practices(Eric_Monk).pptxGraph Data Modeling Best Practices(Eric_Monk).pptx
Graph Data Modeling Best Practices(Eric_Monk).pptxNeo4j
 
Learn with Possible: SEO 101
Learn with Possible: SEO 101Learn with Possible: SEO 101
Learn with Possible: SEO 101Lynn Makela
 
Webinar-Building a Strong Brand For Your Organization -2017-03-07
Webinar-Building a Strong Brand For Your Organization -2017-03-07Webinar-Building a Strong Brand For Your Organization -2017-03-07
Webinar-Building a Strong Brand For Your Organization -2017-03-07TechSoup
 
Employee Empowerment With Graph Technology
Employee Empowerment With Graph TechnologyEmployee Empowerment With Graph Technology
Employee Empowerment With Graph TechnologyNeo4j
 
Career Kickstarter - Building your Career (and Plan) in Atlantic Canada .pdf
Career Kickstarter - Building your Career (and Plan) in Atlantic Canada  .pdfCareer Kickstarter - Building your Career (and Plan) in Atlantic Canada  .pdf
Career Kickstarter - Building your Career (and Plan) in Atlantic Canada .pdfdannguyen4808
 
Games People Play (and the Modules that Enable Them)
Games People Play (and the Modules that Enable Them)Games People Play (and the Modules that Enable Them)
Games People Play (and the Modules that Enable Them)Duo Consulting
 
Introducing Workspaces, a New Experience for Neo4j Developer Tools
Introducing Workspaces, a New Experience for Neo4j Developer ToolsIntroducing Workspaces, a New Experience for Neo4j Developer Tools
Introducing Workspaces, a New Experience for Neo4j Developer ToolsNeo4j
 
Using Gamification with CodeClubWorld.org
Using Gamification with CodeClubWorld.orgUsing Gamification with CodeClubWorld.org
Using Gamification with CodeClubWorld.orgVictor Del Bene
 
Neo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdf
Neo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdfNeo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdf
Neo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdfNeo4j
 
025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...
025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...
025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...Neo4j
 
Luminate Online Best Practices for Beginners
Luminate Online Best Practices for BeginnersLuminate Online Best Practices for Beginners
Luminate Online Best Practices for BeginnersBlackbaud
 
The business case for contributing code
The business case for contributing codeThe business case for contributing code
The business case for contributing codeZivtech, LLC
 
How to Get a Job at Google
How to Get a Job at GoogleHow to Get a Job at Google
How to Get a Job at GoogleEvisors
 
GraphSummit Toronto: Keynote - Innovating with Graphs
GraphSummit Toronto: Keynote - Innovating with Graphs GraphSummit Toronto: Keynote - Innovating with Graphs
GraphSummit Toronto: Keynote - Innovating with Graphs Neo4j
 
Expert Panel Session - SEO for Ecommerce - ionSearch 2012
Expert Panel Session - SEO for Ecommerce - ionSearch 2012Expert Panel Session - SEO for Ecommerce - ionSearch 2012
Expert Panel Session - SEO for Ecommerce - ionSearch 2012ionSearch Conference
 
Software Developer Career Unplugged - GeeCon 2013
Software Developer Career Unplugged - GeeCon 2013Software Developer Career Unplugged - GeeCon 2013
Software Developer Career Unplugged - GeeCon 2013Wojciech Seliga
 

Similar a Training Week: Introduction to Neo4j Bloom (20)

Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge Graphs
 
Neo4j in a Microsoft Shop
Neo4j in a Microsoft ShopNeo4j in a Microsoft Shop
Neo4j in a Microsoft Shop
 
Training Series - Intro to Neo4j
Training Series - Intro to Neo4jTraining Series - Intro to Neo4j
Training Series - Intro to Neo4j
 
Graph Data Modeling Best Practices(Eric_Monk).pptx
Graph Data Modeling Best Practices(Eric_Monk).pptxGraph Data Modeling Best Practices(Eric_Monk).pptx
Graph Data Modeling Best Practices(Eric_Monk).pptx
 
Learn with Possible: SEO 101
Learn with Possible: SEO 101Learn with Possible: SEO 101
Learn with Possible: SEO 101
 
Webinar-Building a Strong Brand For Your Organization -2017-03-07
Webinar-Building a Strong Brand For Your Organization -2017-03-07Webinar-Building a Strong Brand For Your Organization -2017-03-07
Webinar-Building a Strong Brand For Your Organization -2017-03-07
 
Employee Empowerment With Graph Technology
Employee Empowerment With Graph TechnologyEmployee Empowerment With Graph Technology
Employee Empowerment With Graph Technology
 
Career Kickstarter - Building your Career (and Plan) in Atlantic Canada .pdf
Career Kickstarter - Building your Career (and Plan) in Atlantic Canada  .pdfCareer Kickstarter - Building your Career (and Plan) in Atlantic Canada  .pdf
Career Kickstarter - Building your Career (and Plan) in Atlantic Canada .pdf
 
Games People Play (and the Modules that Enable Them)
Games People Play (and the Modules that Enable Them)Games People Play (and the Modules that Enable Them)
Games People Play (and the Modules that Enable Them)
 
Introducing Workspaces, a New Experience for Neo4j Developer Tools
Introducing Workspaces, a New Experience for Neo4j Developer ToolsIntroducing Workspaces, a New Experience for Neo4j Developer Tools
Introducing Workspaces, a New Experience for Neo4j Developer Tools
 
Using Gamification with CodeClubWorld.org
Using Gamification with CodeClubWorld.orgUsing Gamification with CodeClubWorld.org
Using Gamification with CodeClubWorld.org
 
Neo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdf
Neo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdfNeo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdf
Neo4j Generative AI workshop at GraphSummit London 14 Nov 2023.pdf
 
025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...
025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...
025 Exploring Data With Neo4j Bloom - NODES2022 AMERICAS Intermediate 10 - Je...
 
Luminate Online Best Practices for Beginners
Luminate Online Best Practices for BeginnersLuminate Online Best Practices for Beginners
Luminate Online Best Practices for Beginners
 
The business case for contributing code
The business case for contributing codeThe business case for contributing code
The business case for contributing code
 
Leveraging technology
Leveraging technologyLeveraging technology
Leveraging technology
 
How to Get a Job at Google
How to Get a Job at GoogleHow to Get a Job at Google
How to Get a Job at Google
 
GraphSummit Toronto: Keynote - Innovating with Graphs
GraphSummit Toronto: Keynote - Innovating with Graphs GraphSummit Toronto: Keynote - Innovating with Graphs
GraphSummit Toronto: Keynote - Innovating with Graphs
 
Expert Panel Session - SEO for Ecommerce - ionSearch 2012
Expert Panel Session - SEO for Ecommerce - ionSearch 2012Expert Panel Session - SEO for Ecommerce - ionSearch 2012
Expert Panel Session - SEO for Ecommerce - ionSearch 2012
 
Software Developer Career Unplugged - GeeCon 2013
Software Developer Career Unplugged - GeeCon 2013Software Developer Career Unplugged - GeeCon 2013
Software Developer Career Unplugged - GeeCon 2013
 

Más de Neo4j

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
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...Neo4j
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosNeo4j
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Neo4j
 
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
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
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
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeNeo4j
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j
 
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
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j
 
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...Neo4j
 

Más de Neo4j (20)

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
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
 
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
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
 
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!
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG time
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)
 
Neo4j 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_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 Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with Graph
 
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
SWIFT: Maintaining Critical Standards in the Financial Services Industry with...
 

Último

Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Clustering techniques data mining book ....
Clustering techniques data mining book ....Clustering techniques data mining book ....
Clustering techniques data mining book ....ShaimaaMohamedGalal
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 

Último (20)

Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Clustering techniques data mining book ....
Clustering techniques data mining book ....Clustering techniques data mining book ....
Clustering techniques data mining book ....
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 

Training Week: Introduction to Neo4j Bloom

  • 1. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 Introduction to Bloom Soham Dhodapkar Field Engineering @SohamDhodapkar dev.neo4j.com/forum dev.neo4j.com/chat discord.com/invite/neo4j
  • 2. Neo4j, Inc. All rights reserved 2021 • Very hands on - you will be diving into Bloom to do everything from setting it up, to exploring the data, to doing edits and changes! • We will be importing a data set, so we will be using Cypher, but don’t panic! We’ll give you the queries 2 Overview of the training
  • 3. Neo4j, Inc. All rights reserved 2021 3 Overview of Bloom
  • 4. Neo4j, Inc. All rights reserved 2021 Where is Bloom available? • Neo4j Aura • Neo4j Sandbox • Neo4j Desktop • As a plugin for Neo4j Server
  • 5. Neo4j, Inc. All rights reserved 2021 There are two other components we’ll be visiting as part of the session: • We recommend using Neo4j Sandbox for this session ◦ You may also use Neo4j Aura Free • Neo4j Browser: ◦ We’ll use this to load our data 5 (A Brief) Introduction to Neo4j Aura and Browser
  • 6. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 6 Getting up and running on Neo4j Aura Free
  • 7. Neo4j, Inc. All rights reserved 2021 Kaggle Olympics Data Set • Summer and Winter Olympics from 1896 to 2016 • Source: www.kaggle.com/heesoo37/120-years-of-oly mpic-history-athletes-and-results • We’re only using the Winter Games All queries, data, etc.: dev.neo4j.com/bloom-training-repo 7 Introduction to the data set
  • 8. Neo4j, Inc. All rights reserved 2021 Setting up the database Use Neo4j Sandbox: • Go to dev.neo4j.com/try • Sign in & click “Blank sandbox” For Neo4j Aura Free: • Go to dev.neo4j.com/aura-login • Sign in & click “Create a database” • Give your database a name • Click “Create Database” • Make a copy of the generated password - keep it safe!
  • 9. Neo4j, Inc. All rights reserved 2021 Loading the data • Copy all the queries from: http://dev.neo4j.com/bloom-training-1 • Click on open/Neo4j Browser to start the Browser ◦ Username: neo4j • Paste the query into the query window and press the play button to start • Don’t panic! We’ll do it together :)
  • 10. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 10 Setting up the Perspective
  • 11. Neo4j, Inc. All rights reserved 2021 11 Tour of Bloom
  • 12. Neo4j, Inc. All rights reserved 2021 12 Tour of Bloom
  • 13. Neo4j, Inc. All rights reserved 2021 13 Tour of Bloom
  • 14. Neo4j, Inc. All rights reserved 2021 14 Tour of Bloom
  • 15. Neo4j, Inc. All rights reserved 2021 When Bloom loads for the first time: • Bloom will show all existing perspectives, and also offer to automatically generate one • Bloom’s analysis looks for disjointed sets within the label set (e.g. Person, American, Employee, Customer, etc.) and try and group together • Indexes on properties will enable searching on those directly 15 Getting started in Bloom
  • 16. Neo4j, Inc. All rights reserved 2021 • Start the Bloom App • You will be prompted to auto-generate • Explore the auto-generated perspective: ◦ What categories have been loaded? ◦ What category properties have been selected to display? • Try creating your own perspective: ◦ Click on ‘Choose a Perspective’ --> ’Create a Perspective’ ◦ Add the categories ◦ Select properties to display • Switch back to the auto-generated perspective 16 Your turn - create a perspective for the data set
  • 17. Neo4j, Inc. All rights reserved 2021 You can explore your data by specifying: • A property name • A category • A relationship type You can further examine a node by: • Double-clicking to bring up Card List • Explore properties, relationships and neighbors 17 Simple searches in Bloom
  • 18. Neo4j, Inc. All rights reserved 2021 Look up Maxime Dufour-Lapointe: • Explore the information about Maxime Dufour-Lapointe using the Card List • Try right-clicking the node and expand ◦ What more do we learn about Maxime Dufour-Lapointe? ◦ Expanding the Team node (cross-check the colour with the Category list on the right), what more do we learn? 18 Your turn - tell me more about...
  • 19. Neo4j, Inc. All rights reserved 2021 As well as assigning categories and properties, we can further configure the perspective: • We can exclude nodes and relationships completely • We can add search phrases for commonly-executed queries (more on that later) • Once we’re finished configuring the perspective, we can export, import and share it 19 Configuring Bloom
  • 20. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 20 Bloom patterns and exploring the data
  • 21. Neo4j, Inc. All rights reserved 2021 As well as specifying a name/item/thing, we can express patterns consisting of categories and relationships E.g: Maxime Dufour-Lapointe part of Team competed in Event or Maxime Dufour-Lapointe part of Team Event or Maxime Dufour-Lapointe Team Event or Maxime Dufour-Lapointe part of competed in You don’t have to put all the relationships and Events, Bloom will fill the gaps for you! 21 Building patterns
  • 22. Neo4j, Inc. All rights reserved 2021 How would you find the answer to: • What Olympic games was Yelena Dubok a part of? How many different patterns can you come up with that provide the answer? 22 Your turn - mind the gap
  • 23. Neo4j, Inc. All rights reserved 2021 We can start to build some interesting patterns when we understand the model. We can: • Search paths between two points • Find hierarchies and dependencies • Find more than one occurrence of something 23 Building upon patterns
  • 24. Neo4j, Inc. All rights reserved 2021 Reveal different properties across a specific set of relationships and nodes from a set start and end point E.g. Elizabeth Lee "Beth" Heiden part of Team participated in Games participated in Team part of Eric Arthur Heiden 24 Search paths between two points
  • 25. Neo4j, Inc. All rights reserved 2021 Finding the occurrence of two or more Categories/Properties Can be a single hop: E.g. Games City Games Can be across several hops: E.g. Games Team Athlete Team Games 25 Finding more than one occurrence
  • 26. Neo4j, Inc. All rights reserved 2021 We can also apply more fine-grained control in our Bloom phrases via the properties that don’t have indexes E.g. Games year 1972 Be aware this is case sensitive! Accessing properties
  • 27. Neo4j, Inc. All rights reserved 2021 • How many gold medals has Claudia Pechstein won? • How many teams has Lamine Guye been in? • Can you find some athletes that have represented more than one country? • What different ways are Olivier Jenot and • Patrice Servelle linked? (hint: think about the paths that may link them) 27 Your turn - time to answer some questions!
  • 28. Neo4j, Inc. All rights reserved 2021 We will from time to time want to hide/show parts of our results We can select and deselect nodes to show: • Shortest path • Expand nodes • Dismiss nodes • Select an area • Select a category 28 Interacting with the Workspace
  • 29. Neo4j, Inc. All rights reserved 2021 We want to show just the athletes that have won more than one Gold Medal. How would you display only the result nodes we’re interested in? Have you noticed something else? Don’t worry if you haven’t, we’ll discuss it shortly. 29 Your turn - just the athletes, please
  • 30. Neo4j, Inc. All rights reserved 2021 Only 150-ish athletes are brought back that have won more than one gold medal/more teams than athletes... • Bloom uses internal limits to improve performance • This may result in only a sample of data being returned • You can adjust the limits in the settings ◦ Increasing the limit to 1200 brings back 580-ish athletes 30 A note on limits
  • 31. Neo4j, Inc. All rights reserved 2021 Search phrases are a way of adding tailored, complex querying to Bloom, via a user-friendly and intuitive phrase. They can be extremely helpful: • We can use search phrases for commonly-used patterns • They can form the basis for production-ready common queries • Provide helper functions 31 Search phrases
  • 32. Neo4j, Inc. All rights reserved 2021 Wouldn’t it be nice to find Athletes without knowing their middle names? Let’s add a search phrase for that! • Add search phrases to find names ◦ Cypher code from: dev.neo4j.com/bloom-training-2 • Test out your search phrases! 32 Your turn - creating search phrases
  • 33. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 33 Editing data in bloom
  • 34. Neo4j, Inc. All rights reserved 2021 We also have some basic editing options available to us in Bloom. We can: • Edit properties • Duplicate nodes • Create new nodes • Create relationships between nodes • Change labels 34 Editing the data
  • 35. Neo4j, Inc. All rights reserved 2021 • Add a relationship between City and Country for Cities that have held the Olympics more than once • Feel free to search the City locations if you don’t know them off hand :) 35 Your turn - where are those cities?
  • 36. Neo4j, Inc. All rights reserved 2021 This is only possible whilst you have write access to Neo4j. If you do not, you will not be able to take advantage of these features Other editing constraints: • You can only create existing relationship types • You cannot delete relationships or nodes • You can only add existing properties • You can only add properties to existing categories/labels 36 Note on editing
  • 37. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 Customizing and applying rule-based styling
  • 38. Neo4j, Inc. All rights reserved 2021 Your visualization, your way! As well as tailoring what properties, nodes and relationships we do or do not show, we can also: • Add icons for nodes • Change the default colors and sizes for nodes and relationships • Add rule-based, dynamic styling for color and size based on: ◦ Existence conditions ◦ A specific range for properties ◦ Uniqueness of property values
  • 39. Neo4j, Inc. All rights reserved 2021 Your turn - who’s the most connected athlete? We are going to use the Page Rank scores we have on Athlete to Athlete, based on shared Teams. First of all, why not add some appropriate icons for all the nodes in use? Using the dynamic sizing option, use the smallest and largest node sizes possible. The following range values may be useful: • Min value: 0.15 • Max value: 4.85
  • 40. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 So how do I continue my graph journey?
  • 41. Neo4j, Inc. All rights reserved 2021 More training this week - all starting at 1pm UTC Thursday: Build APIs with Neo4j GraphQL Library Friday: Create a Knowledge Graph: A Simple ML Approach Missed the previous sessions? Catch up now! https://dev.neo4j.com/training-catchup
  • 42. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 Free online training and certification: • dev.neo4j.com/learn How to, best practices, hands on and community stories: • dev.neo4j.com/videos Come say hello :) • dev.neo4j.com/chat • dev.neo4j.com/forum Continue your journey
  • 43. Neo4j, Inc. All rights reserved 2021 Neo4j, Inc. All rights reserved 2021 Soham Dhodapkar Field Engineering @SohamDhodapkar soham@neo4j.com Join the conversation at dev.neo4j.com/forum