SlideShare a Scribd company logo
Discovering+the+Power+of+Dark+Data+
Or:$The$Value$of$Rela/onships$
Javazone$Oslo$Sept$2015$
Michael+Hunger+
Caretaker,$Neo4j$Community$
Ask$me$anything$
$
michael@neo4j.com$$
$
@mesirii$|$@neo4j$
The+world+is+a+graph+–+everything+is+connected+
•  people,&places,&events&
•  companies,&markets&
•  countries,&history,&poli4cs&
•  sciences,&art,&teaching&
•  technology,&networks,&machines,&&
applica4ons,&users&
•  so7ware,&code,&dependencies,&&
architecture,&deployments&
Meet+Jan+
Kontext+is+King+
+
Community$Graph$
Neo4j$
Let‘s+have+a+look.+
by&Mike&Nolan&CC&BY?SA&3.0&
NODE&
key:&“value”&
proper4es&
Property+Graph+Model+
Nodes&
•  The&en44es&in&the&graph&
•  Can&have&name?value&proper%es'
•  Can&be&labeled&
RelaEonships&
•  Relate&nodes&by&type&and&direc4on&
•  Can&have&name?value&proper%es'
RELATIONSHIP&
NODE& NODE&
key:&“value”&
proper4es&
key:&“value”&
proper4es&
key:&“value”&
proper4es&
CAR&
name:&“Jan”&
last:&Hansson&
born:&1978&
name:&“Anne”&
last:&Olsen&
since:&&
Jan&10,&2011&
brand:&“Volvo”&
model:&“V70”&
Property+Graph+Model+&+Example+
Nodes&
•  The&en44es&in&the&graph&
•  Can&have&name?value&proper%es'
•  Can&be&labeled&
RelaEonships&
•  Relate&nodes&by&type&and&direc4on&
•  Can&have&name?value&proper%es'
LOVES&
LOVES&
LIVES&WITH&
PERSON& PERSON&
Your+friend+Neo4j+
An&openLsource$graph$database&
•  Manager+and+store&your&connected+
data+as&a&graph+
•  Query+relaEonships&&
easily&and&quickly&
•  Evolve+model+and+applicaEons++
to&support&new&requirements&and&
insights&
•  Built&to&solve&relaEonal+pains++
&
Your+friend+Neo4j+
An&openLsource$graph$database$
&
•  Built+for+RelaEonships+
•  Open+Source+
•  Java+&+Scala+
•  High+Performance+
•  ACIDSDatabase+
&
Whiteboard+Friendly+Graph+Modeling+
Graph+Query+Language:+Cypher+
&&&&&&&&&&&&&&(jan:Person&{&name:“Jan”}&)&?[:LOVES]?>&(anne:Person&{&name:“Anne”}&)&&
LOVES&
Jan+ Anne+
NODE& NODE&
LABEL& PROPERTY&LABEL& PROPERTY&
MATCH+
Cypher:+Clauses+
• CREATE&pabern&
• MERGE&pabern&
• ADD&
• DELETE&
Cypher:+Clauses+
• MATCH&pabern&&
WHERE&pred&
• ORDER&BY&expr&&
SKIP&...&LIMIT&...&
• RETURN&expr&AS&alias&...&
Cypher:+Clauses+
• WITH&expr&AS&alias,&...&
• UNWIND&coll&AS&item&
• LOAD&CSV&FROM&„url“&AS&row&
GeYng+Data+into+Neo4j+
CypherSBased+“LOAD+CSV”+
•  Transac4onal&(ACID)&writes&
•  Ini4al&and&incremental&loads&of&up&to&&
10&million&nodes&and&rela4onships&
LOAD%CSV%WITH%HEADERS%FROM%"url"%AS%row%
MERGE%(:Person%{name:row.name,%%
%%%%%%%%%%%%%%%%%age:toInt(row.age)});%
GeYng+Data+into+Neo4j+
Load+JSON+with+Cypher+
•  Send&JSON&as&parameter&
•  Deconstruct&the&document&
•  Into&a&non?duplicated&graph&model&
UNWIND%{json}.items%as%item%
MERGE%(:Person%{name:item.name,%%
%%%%%%%%%%%%%%%%%age:toInt(item.age)});%
GeYng+Data+into+Neo4j+
CSV+Bulk+Loader++++neo4j/import'
•  For&ini4al&database&popula4on&
•  For&loads&with&10B+&records&
•  Up&to&1M&records&per&second&
bin/neo4jOimport%–Ointo%people.db%%
%OOnodes:Person%people.csv%
%OOrelationship:FRIEND_OF%friendship.csv%
Let‘s+LOAD+
USED& SHARED&
&&&
Core+Model+
POSTED&
&&
&
&
Full+Model+
Twi]er+
•  Run&a&twiber&search,&exclude&Neo4j&sources&
•  „neo4j&OR&#neo4j&OR&@neo4j&&
&?from:@neo4j&?from:@neotechnology“&
•  Pass&resul4ng&JSON&directly&to&Cypher&
(:Person)O[:TWEETED]O>(:Tweet:Content)O[:TAGGED]O>(:Tag)%
(:Tweet)O[:MENTIONS]O>(:Person)%
(:Tweet)O[:RETWEET]O>(:Tweet)%
(:Tweet)O[:REPLY]O>(:Tweet)%
(:Tweet)O[:CONTAINS]O>(:Link)%
Twi]er+
UNWIND%{tweets}%AS%t%
WITH%t,%t.entities%AS%e,%t.user%AS%u%
%
MERGE%(tweet:Tweet:Content%{id:t.id})%
SET%tweet.text%=%t.text,%tweet.created_at%=%t.created_at,...%
%
MERGE%(p:Person%{name:u.name})%%
SET%p.handle%=%u.screen_name,%p.followers%=%u.followers_count,%...%
%
MERGE%(p)O[:POSTED]O>(tweet)%
%
FOREACH%(h%IN%e.hashtags%|%%
%%MERGE%(tag:Tag%{name:toLower(h.text)})%
%%MERGE%(tweet)O[:TAGGED]O>(tag))%
%
FOREACH%(url%IN%e.urls%|%
%%MERGE%(link:Link%{url:u.expanded_url})%
%%MERGE%(tweet)O[:CONTAINS]O>(link))%
...%
Data+imported&
Connect!+&
•  twiber&handle&
•  email&
•  website&
•  name&
•  tags&
•  url&
+
SoOware$Analy/cs$
jqassistant.org$
So_ware+AnalyEcs+
So7ware&is&connected&informa4on&
•  Source&?>&AST&
•  Inheritance,&Composi4on,&Delega4on&
•  Call&Trees&
•  Run4me&Memory&
•  Dependencies&
•  Modules,&Libraries&
•  Tests&
•  ...&
& hbps://jqassistant.org&
jQAssistant+
•  GeekCruise:&My&first&Neo4j&project&
•  So_ware+deteriorates+
•  Develop&rules&and&enforce&them&
•  Commercial&Tools&too&inflexible&
•  Open&Source&So7ware&...&&
•  Scanner&?>&Enhancer&?>&Analyzer&
•  Enrichment,&Concepts&and&Rulez&in&Cypher&
•  Scanner&Plugins&
•  Integrate&in&Build&Process&
•  Fail,&Generate&Reports,&...& hbp://jqassistant.org&
Let‘s+explore+...+
hbp://jqassistant.org/demo/java8&
...+The+JDK+
+
A$tale$of$french$silos$
SFR$France$
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Industry:'''Communica%ons'
Use'case:''Network'Management'
Paris,&France&
•  Large&French&communica4ons&company&
•  Tons&of&various&networking&infrasctructure&
•  Has&to&shut&down&equipment&for&maintenance&
•  Who+is+impacted?+How+to+compensate?+
•  Data&lives&in&30+&systems&
•  Took&a&week&to&print,&reseach,&inform&...&
•  Un4l&...&
5
8
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Domain+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Industry:'''Communica%ons'
Use'case:''Network'Management'
Paris,&France&
•  Second&largest&communica4ons&company&
in&France&
•  Part&of&Vivendi&Group,&&
partnering&with&Vodafone&
6
0
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Infrastructure&maintenance&took&one+full+week+to&plan,&
because&of&the&need&to&model&network&impacts&
• Needed&rapid,&automated&“what+if”&analysis&to&ensure&
resilience&during&unplanned&network&outages&
• Iden4fy&weaknesses&in&the&network&to&uncover&the&need&for&
addi4onal&redundancy&
• Network&informa4on&spread&across+>+30+systems,&with&daily&
changes&to&network&infrastructure&
• Business&needs&some4mes&changed&very&rapidly&
Business+Problem+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Flexible&network&inventory&management&system,&to&support&
modeling,&aggrega4on&&&troubleshoo4ng&
• Single+source+of+truth+(Neo4j)&represen4ng&the&en4re&network&
• Dynamic&system&loads&data&from+30++systems,&and&allows&new&
applica4ons&to&access&network&data&
• Modeling&efforts&greatly&reduced&because&of&the&near+1:1+
mapping+between&the&real&world&and&the&graph&
• Flexible+schema+highly&adaptable&to&changing&business&
requirements&
SoluEon+&+Benefits+
+
Visual$Graph$Search$
For$NonLDevelopers$
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Neat&Javascript&library&based&on&d3.js+
• Uses&Graph&Metadata&to&offer&visual&search&
• Categories&to&filter&Instances&
• Component&based&extensions&
• Graph&&
• Zero&Config&with&Web&Extension&
Popoto.js+
hbp://www.popotojs.com/&
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Popoto.js+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Popoto.js+
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
Visual+Search+Bar+
• Based&on&visualsearch.js&
• Uses&graph&metadata&for&parametriza4on&
• Limit&results&by&selected&items&
• By&Max&de&Marzi&
maxdemarzi.com/2013/07/03/the?last?mile/&
Background&
Business&problem& Solu4on&&&Benefits&
©&All&Rights&Reserved&2014&|&Neo&Technology,&Inc.&
• Natural&Language&to&Cypher&
• Ruby&TreeTop&Gem&for&NLP&&
• Convert&phrases&to&Cypher&Fragments&
Facebook+Graph+Search+
maxdemarzi.com/2013/01/28/facebook?graph?search?with?cypher?and?neo4j/&
Users+Love+Neo4j+
We&found&Neo4j&to&be&
literally&thousands+of+Emes+
faster+than&our&prior&MySQL&
solu4on,&with&queries&that&
require&10+to+100+Emes+less+
code.&Today,&Neo4j&provides&
eBay&with&func4onality&that&
was&previously+impossible. &
&
Volker'Pacher'
Senior'Developer'
Performance+
"The&Neo4j&graph&database&gives&us&dras4cally&
improved&performance&and&a&simple&language&to&query&
our&connected&data”&&
/'Sebas%an'Verheugher,'Telenor&
Scale+and+Availability+
"As&the&current&market&leader&in&graph&databases,&and&
with&enterprise&features&for&scalability&and&availability,&
Neo4j&is&the&right&choice&to&meet&our&demands.”&
&&&&/'Marcos'Wada,'Walmart&
Discrete+Data+
Minimally''
connected'data'
Graph+Databases+are+designed+for+data+relaEonships+
Summary+S+Use+the+Right+Database+for+the+Job+
Other+NoSQL+ RelaEonal+DBMS+ Graph+DBMS+
Connected+Data+
Focused'on'
Data'Rela%onships'
Development+Benefits+
Easy&model&maintenance&
Easy&query&
Deployment+Benefits&
Ultra&high&performance&
Minimal&resource&usage&
There+Are+Lots+of+Ways+to+Easily+Learn+Neo4j+
neo4j.com/developer+
Users+Love+Neo4j+–+Will+you+too?++
Thanks!+QuesEons?$
Free$O’Reilly$Book:$
graphdatabases.com$
Find$Me:$@neo4j$

More Related Content

Viewers also liked

Graph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebberGraph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebber
Neo4j
 
Graph all the things
Graph all the thingsGraph all the things
Graph all the things
Neo4j
 
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucherNeo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j
 
Transparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnementTransparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnement
Neo4j
 
GraphDay Noble/Coolio
GraphDay Noble/CoolioGraphDay Noble/Coolio
GraphDay Noble/Coolio
Neo4j
 
Meetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4jMeetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4j
Neo4j
 
Graphs fun vjug2
Graphs fun vjug2Graphs fun vjug2
Graphs fun vjug2
Neo4j
 
GraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in GraphdatenbankenGraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in Graphdatenbanken
Neo4j
 
GraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structrGraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structr
Neo4j
 
Graph all the things - PRathle
Graph all the things - PRathleGraph all the things - PRathle
Graph all the things - PRathle
Neo4j
 
GraphTalks - Einführung
GraphTalks - EinführungGraphTalks - Einführung
GraphTalks - Einführung
Neo4j
 
GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich
Neo4j
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to Graphs
Neo4j
 
Neo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole WhiteNeo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole White
Neo4j
 
GraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply ChainGraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply Chain
Neo4j
 
Introduction to graph databases GraphDays
Introduction to graph databases  GraphDaysIntroduction to graph databases  GraphDays
Introduction to graph databases GraphDays
Neo4j
 
GraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud PreventionGraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud Prevention
Neo4j
 
Using Neo4j from Java
Using Neo4j from JavaUsing Neo4j from Java
Using Neo4j from Java
Neo4j
 
Introduction to Neo4j and .Net
Introduction to Neo4j and .NetIntroduction to Neo4j and .Net
Introduction to Neo4j and .Net
Neo4j
 
Initiation à Neo4j
Initiation à Neo4jInitiation à Neo4j
Initiation à Neo4j
Neo4j
 

Viewers also liked (20)

Graph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebberGraph Your Business - GraphDay JimWebber
Graph Your Business - GraphDay JimWebber
 
Graph all the things
Graph all the thingsGraph all the things
Graph all the things
 
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucherNeo4j Makes Graphs Easy? - GraphDay AmandaLaucher
Neo4j Makes Graphs Easy? - GraphDay AmandaLaucher
 
Transparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnementTransparency One : La (re)découverte de la chaîne d'approvisionnement
Transparency One : La (re)découverte de la chaîne d'approvisionnement
 
GraphDay Noble/Coolio
GraphDay Noble/CoolioGraphDay Noble/Coolio
GraphDay Noble/Coolio
 
Meetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4jMeetup Analytics with R and Neo4j
Meetup Analytics with R and Neo4j
 
Graphs fun vjug2
Graphs fun vjug2Graphs fun vjug2
Graphs fun vjug2
 
GraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in GraphdatenbankenGraphTalk Frankfurt - Einführung in Graphdatenbanken
GraphTalk Frankfurt - Einführung in Graphdatenbanken
 
GraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structrGraphTalk - Semantische Netze mit structr
GraphTalk - Semantische Netze mit structr
 
Graph all the things - PRathle
Graph all the things - PRathleGraph all the things - PRathle
Graph all the things - PRathle
 
GraphTalks - Einführung
GraphTalks - EinführungGraphTalks - Einführung
GraphTalks - Einführung
 
GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich GraphTalk - Semantisches PDM bei Schleich
GraphTalk - Semantisches PDM bei Schleich
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to Graphs
 
Neo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole WhiteNeo4j Makes Graphs Easy: Nicole White
Neo4j Makes Graphs Easy: Nicole White
 
GraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply ChainGraphConnect 2014 SF: Graphing the Supply Chain
GraphConnect 2014 SF: Graphing the Supply Chain
 
Introduction to graph databases GraphDays
Introduction to graph databases  GraphDaysIntroduction to graph databases  GraphDays
Introduction to graph databases GraphDays
 
GraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud PreventionGraphDay Stockholm - Fraud Prevention
GraphDay Stockholm - Fraud Prevention
 
Using Neo4j from Java
Using Neo4j from JavaUsing Neo4j from Java
Using Neo4j from Java
 
Introduction to Neo4j and .Net
Introduction to Neo4j and .NetIntroduction to Neo4j and .Net
Introduction to Neo4j and .Net
 
Initiation à Neo4j
Initiation à Neo4jInitiation à Neo4j
Initiation à Neo4j
 

Similar to Graph Search and Discovery for your Dark Data

Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012
Wayne Chen
 
Teaching & Learning Forum presentation
Teaching & Learning Forum presentationTeaching & Learning Forum presentation
Teaching & Learning Forum presentation
Carol Skyring
 
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use CasesNeo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j
 
Craig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + InnovationCraig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + Innovation
Craig Pladson
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph Databases
Neo4j
 
Eastside incubator - Startup in Seattle
Eastside incubator - Startup in SeattleEastside incubator - Startup in Seattle
Eastside incubator - Startup in Seattle
Bryan Starbuck
 
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
Masanori Takano
 
Neo4j GraphTalk Amsterdam - Introduction and Graph Use Cases
Neo4j GraphTalk Amsterdam - Introduction and Graph Use CasesNeo4j GraphTalk Amsterdam - Introduction and Graph Use Cases
Neo4j GraphTalk Amsterdam - Introduction and Graph Use Cases
Neo4j
 
LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011
Mathieu Bastian
 
Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content
Visually
 
[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher
Neo4j
 
Stad spel-data
Stad spel-dataStad spel-data
Stad spel-data
Rene Pare
 
201210611 danish delegation
201210611 danish delegation201210611 danish delegation
201210611 danish delegation
Martijn Kriens
 
Nordkapp dConstruct09 Recap
Nordkapp dConstruct09 RecapNordkapp dConstruct09 Recap
Nordkapp dConstruct09 Recap
Teppo Kotirinta
 
Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015
Jennifer Davis
 
GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)
Neo4j
 

Similar to Graph Search and Discovery for your Dark Data (16)

Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012Hook Mobile Living Social Hackathon MoDevUX 2012
Hook Mobile Living Social Hackathon MoDevUX 2012
 
Teaching & Learning Forum presentation
Teaching & Learning Forum presentationTeaching & Learning Forum presentation
Teaching & Learning Forum presentation
 
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use CasesNeo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
Neo4j GraphTalk Copenhagen - Introduction and Graph Use Cases
 
Craig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + InnovationCraig Pladson On Interactive Marketing + Innovation
Craig Pladson On Interactive Marketing + Innovation
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph Databases
 
Eastside incubator - Startup in Seattle
Eastside incubator - Startup in SeattleEastside incubator - Startup in Seattle
Eastside incubator - Startup in Seattle
 
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
進化ゲーム理論の考え方でソーシャルゲームの "ソーシャル" を分析する
 
Neo4j GraphTalk Amsterdam - Introduction and Graph Use Cases
Neo4j GraphTalk Amsterdam - Introduction and Graph Use CasesNeo4j GraphTalk Amsterdam - Introduction and Graph Use Cases
Neo4j GraphTalk Amsterdam - Introduction and Graph Use Cases
 
LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011LinkedIn InMaps, Data Visualization Meetup 2011
LinkedIn InMaps, Data Visualization Meetup 2011
 
Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content Creating Great Infographics & Visual Content
Creating Great Infographics & Visual Content
 
[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher[Webinar] Introduction to Cypher
[Webinar] Introduction to Cypher
 
Stad spel-data
Stad spel-dataStad spel-data
Stad spel-data
 
201210611 danish delegation
201210611 danish delegation201210611 danish delegation
201210611 danish delegation
 
Nordkapp dConstruct09 Recap
Nordkapp dConstruct09 RecapNordkapp dConstruct09 Recap
Nordkapp dConstruct09 Recap
 
Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015Effective Devops - AWS Loft Event June 2015
Effective Devops - AWS Loft Event June 2015
 
GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)GraphTour - Popular Use Cases (Tel Aviv)
GraphTour - Popular Use Cases (Tel Aviv)
 

More from Neo4j

Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Neo4j
 
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge GraphGraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
Neo4j
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansBiomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
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
 
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
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - 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 | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
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
 
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product UpdatesGraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
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
 

More from Neo4j (20)

Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
 
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge GraphGraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansBiomedical Knowledge Graphs for Data Scientists and Bioinformaticians
Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
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
 
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 - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - 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 | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
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
 
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product UpdatesGraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
 
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
 

Recently uploaded

一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理
一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理
一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理
agdhot
 
Digital Marketing Performance Marketing Sample .pdf
Digital Marketing Performance Marketing  Sample .pdfDigital Marketing Performance Marketing  Sample .pdf
Digital Marketing Performance Marketing Sample .pdf
Vineet
 
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
9gr6pty
 
Sample Devops SRE Product Companies .pdf
Sample Devops SRE  Product Companies .pdfSample Devops SRE  Product Companies .pdf
Sample Devops SRE Product Companies .pdf
Vineet
 
Senior Software Profiles Backend Sample - Sheet1.pdf
Senior Software Profiles  Backend Sample - Sheet1.pdfSenior Software Profiles  Backend Sample - Sheet1.pdf
Senior Software Profiles Backend Sample - Sheet1.pdf
Vineet
 
一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理
一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理
一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理
uevausa
 
一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理
一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理
一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理
osoyvvf
 
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
Vietnam Cotton & Spinning Association
 
Call Girls Hyderabad (india) ☎️ +91-7426014248 Hyderabad Call Girl
Call Girls Hyderabad  (india) ☎️ +91-7426014248 Hyderabad  Call GirlCall Girls Hyderabad  (india) ☎️ +91-7426014248 Hyderabad  Call Girl
Call Girls Hyderabad (india) ☎️ +91-7426014248 Hyderabad Call Girl
sapna sharmap11
 
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
ywqeos
 
一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理
zsafxbf
 
How To Control IO Usage using Resource Manager
How To Control IO Usage using Resource ManagerHow To Control IO Usage using Resource Manager
How To Control IO Usage using Resource Manager
Alireza Kamrani
 
Do People Really Know Their Fertility Intentions? Correspondence between Sel...
Do People Really Know Their Fertility Intentions?  Correspondence between Sel...Do People Really Know Their Fertility Intentions?  Correspondence between Sel...
Do People Really Know Their Fertility Intentions? Correspondence between Sel...
Xiao Xu
 
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
Rebecca Bilbro
 
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
eoxhsaa
 
Sid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.pptSid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.ppt
ArshadAyub49
 
一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理
一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理
一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理
zoykygu
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
bmucuha
 
SAP BW4HANA Implementagtion Content Document
SAP BW4HANA Implementagtion Content DocumentSAP BW4HANA Implementagtion Content Document
SAP BW4HANA Implementagtion Content Document
newdirectionconsulta
 
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
oaxefes
 

Recently uploaded (20)

一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理
一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理
一比一原版加拿大麦吉尔大学毕业证(mcgill毕业证书)如何办理
 
Digital Marketing Performance Marketing Sample .pdf
Digital Marketing Performance Marketing  Sample .pdfDigital Marketing Performance Marketing  Sample .pdf
Digital Marketing Performance Marketing Sample .pdf
 
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
一比一原版(uob毕业证书)伯明翰大学毕业证如何办理
 
Sample Devops SRE Product Companies .pdf
Sample Devops SRE  Product Companies .pdfSample Devops SRE  Product Companies .pdf
Sample Devops SRE Product Companies .pdf
 
Senior Software Profiles Backend Sample - Sheet1.pdf
Senior Software Profiles  Backend Sample - Sheet1.pdfSenior Software Profiles  Backend Sample - Sheet1.pdf
Senior Software Profiles Backend Sample - Sheet1.pdf
 
一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理
一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理
一比一原版加拿大渥太华大学毕业证(uottawa毕业证书)如何办理
 
一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理
一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理
一比一原版(uom毕业证书)曼彻斯特大学毕业证如何办理
 
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
[VCOSA] Monthly Report - Cotton & Yarn Statistics May 2024
 
Call Girls Hyderabad (india) ☎️ +91-7426014248 Hyderabad Call Girl
Call Girls Hyderabad  (india) ☎️ +91-7426014248 Hyderabad  Call GirlCall Girls Hyderabad  (india) ☎️ +91-7426014248 Hyderabad  Call Girl
Call Girls Hyderabad (india) ☎️ +91-7426014248 Hyderabad Call Girl
 
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)伦敦商学院毕业证如何办理
 
一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理一比一原版莱斯大学毕业证(rice毕业证)如何办理
一比一原版莱斯大学毕业证(rice毕业证)如何办理
 
How To Control IO Usage using Resource Manager
How To Control IO Usage using Resource ManagerHow To Control IO Usage using Resource Manager
How To Control IO Usage using Resource Manager
 
Do People Really Know Their Fertility Intentions? Correspondence between Sel...
Do People Really Know Their Fertility Intentions?  Correspondence between Sel...Do People Really Know Their Fertility Intentions?  Correspondence between Sel...
Do People Really Know Their Fertility Intentions? Correspondence between Sel...
 
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
PyData London 2024: Mistakes were made (Dr. Rebecca Bilbro)
 
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
一比一原版多伦多大学毕业证(UofT毕业证书)学历如何办理
 
Sid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.pptSid Sigma educational and problem solving power point- Six Sigma.ppt
Sid Sigma educational and problem solving power point- Six Sigma.ppt
 
一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理
一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理
一比一原版(heriotwatt学位证书)英国赫瑞瓦特大学毕业证如何办理
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
SAP BW4HANA Implementagtion Content Document
SAP BW4HANA Implementagtion Content DocumentSAP BW4HANA Implementagtion Content Document
SAP BW4HANA Implementagtion Content Document
 
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
一比一原版卡尔加里大学毕业证(uc毕业证)如何办理
 

Graph Search and Discovery for your Dark Data