SlideShare ist ein Scribd-Unternehmen logo
1 von 35
Downloaden Sie, um offline zu lesen
Inves&ga&ng	the	#PanamaPapers	
Connec&ons	with	Neo4j	
PartnerDay		Munich	
Stefan	Kolmar	
Director	Field	Engineering
Source	Material	
taken	from		
•  the	ICIJ	presenta1on	
•  the	Reddit	AMA	
•  online	publica1ons	(SZ,	Guardian,	TNW	et.al.)	
•  the	ICIJ	website	
•  hFps://panamapapers.icij.org/	
•  The	Power	Players	
•  Key	Numbers	&	Figures
+190 journalists in
more than 65 countries
12 staff members (USA, Costa Rica, Venezuela, Germany, France, Spain)
50% of the team = Data & Research Unit
raw files
metadata
author; sender...
database
search and
discovery
raw text
3 million files
x
10 seconds per
file
=
347 Days
Inves1gators	used	
Nuix’s	op1cal	
character	recogni1on	
to	make	millions	of	
scanned	documents	
text-searchable.	They	
used	Nuix’s	named	
en1ty	extrac1on	and	
other	analy1cal	tools	
to	iden1fy	and	cross-
reference	the	names	of	
Mossack	Fonseca	
clients	through	millions	
of	documents.
Lucene syntax
queries with proximity
matching!
400
users
Unstructured	data	extrac1on	
●  Nuix	professional	OCR	service	
●  ICIJ	Extract	(open	source,	Java:	hFps://github.com/ICIJ/extract),		
leverages	Apache	Tika,	Tesseract	OCR	and	JBIG2-ImageIO.	
	
Structured	data	extrac1on	
●  A	bunch	of	Python	
	
Database	
●  Apache	Solr	(open	source,	Java)	
●  Redis	(open	source,	C)	
● Neo4j	(open	source,	Java)	
	
App	
●  Blacklight	(open	source,	Rails)	
●  Linkurious	(closed	source,	JS)	
Stack
Context	is	King	
name:	“John”	
last:	„Miller“	
role:	„Nego1ator“	
name:	"Maria"	
last:	"Osara"	name:	“Some	Media	Ltd”	
value:	“$70M”	
PERSON	
PERSON	
PERSON	
PERSON	
name:	”Jose"	
last:	“Pereia“	
posi1on:	“Governor“	
name:	“Alice”	
last:	„Smith“	
role:	„Advisor“
Context	is	King	
SENT	
SUPPORTS	
CREATED	
MENTIONS	
name:	“John”	
last:	„Miller“	
role:	„Nego1ator“	
name:	"Maria"	
last:	"Osara"	
since:		
Jan	10,	2011	
name:	“Some	Media	Ltd”	
value:	“$70M”	
PERSON	
PERSON	
WROTE	
PERSON	
PERSON	
name:	”Jose"	
last:	“Pereia“	
posi1on:	“Governor“	
name:	“Alice”	
last:	„Smith“	
role:	„Advisor“
The	world	is	a	graph	–	everything	is	connected	
•  people,	places,	events	
•  companies,	markets	
•  countries,	history,	poli1cs	
•  sciences,	art,	teaching	
•  technology,	networks,	machines,		
applica1ons,	users	
•  sodware,	code,	dependencies,		
architecture,	deployments	
•  criminals,	fraudsters	and	their	behavior
NODE	
key:	“value”	
proper1es	
Property	Graph	Model	
Nodes	
•  The	en11es	in	the	graph	
•  Can	have	name-value	proper%es	
•  Can	be	labeled	
Rela&onships	
•  Relate	nodes	by	type	and	direc1on	
•  Can	have	name-value	proper%es	
RELATIONSHIP	
NODE	 NODE	
key:	“value”	
proper1es	
key:	“value”	
proper1es	
key:	“value”	
proper1es
Your	friend	Neo4j	
An	open-source	graph	database	
•  Manage	and	store	your	connected	
data	as	a	graph	
•  Query	rela&onships		
easily	and	quickly	
•  Evolve	model	and	applica&ons		
to	support	new	requirements	and	
insights	
•  Built	to	solve	rela&onal	pains
Value	from	Data	Rela&onships	
Common	Use	Cases	
Internal	Applica&ons	
Master	Data	Management		
Network	and		
IT	Opera1ons	
Fraud	Detec&on	
Customer-Facing	Applica&ons	
Real-Time	Recommenda1ons	
Graph-Based	Search	
Iden1ty	and		
Access	Management	
hTp://neo4j.com/use-cases
Whiteboard	to	Graph
Neo4j:	All	about	PaTerns	
																			(:Person	{	name:"Dan"}	)	-[:KNOWS]->	(:Person	{name:"Ann"})	
KNOWS	
Dan	 Ann	
NODE	 NODE	
LABEL	 PROPERTY	
hTp://neo4j.com/developer/cypher	
LABEL	 PROPERTY
Cypher:	Find	PaTerns	
				MATCH	(:Person	{	name:"Dan"}	)	-[:KNOWS]->	(who:Person)	RETURN	who	
KNOWS	
Dan	 ???	
LABEL	
NODE	 NODE	
LABEL	 PROPERTY	 ALIAS	 ALIAS	
hTp://neo4j.com/developer/cypher
Ge]ng	Data	into	Neo4j	
Cypher-Based	“LOAD	CSV”	
•  Transac1onal	(ACID)	writes	
•  Ini1al	and	incremental	loads	of	up	to		
10	million	nodes	and	rela1onships	
,	
,	,	
LOAD	CSV	WITH	HEADERS	FROM	"url"	AS	row	
MERGE	(:Person	{name:row.name,		
																	age:toInt(row.age)});
Ge]ng	Data	into	Neo4j	
Load	JSON	with	Cypher	
•  Load	JSON	via	procedure	
•  Deconstruct	the	document	
•  Into	a	non-duplicated	graph	model	
{}	
{}	{}	
CALL	apoc.load.json("url")	yield	value	as	doc	
UNWIND	doc.items	as	item	
MERGE	(:Contract	{title:item.title,		
																		amount:toFloat(item.amount)});
Ge]ng	Data	into	Neo4j	
CSV	Bulk	Loader				neo4j-import	
•  For	ini1al	database	popula1on	
•  For	loads	with	10B+	records	
•  Up	to	1M	records	per	second	
,,,	
,,,	,,,	
bin/neo4j-import	–-into	people.db		
	--nodes:Person	people.csv	
	--nodes:Company	companies.csv	
	--relationship:STAKEHOLDER	stakeholders.csv
The	Steps	Involved	in	the	Document	Analysis	
1.  Acquire	documents	
	
2.  Classify	documents	
•  Scan	/	OCR		
•  Extract	document	metadata	
	
3.  Whiteboard	domain	and	ques&ons,	determine	
•  en&&es	and	their	rela&onships	
•  poten1al	en1ty	and	rela1onship	proper&es	
•  sources	for	those	en11es	and	their	proper1es
The	Steps	Involved	in	the	Document	Analysis	
4.  Develop	analyzers,	rules,	parsers	and	named	en1ty	recogni1on	
5.  Parse	and	store	metadata,	document	and	en1ty	rela1onships		
•  Parse	by	author,	named	en11es,	dates,	sources	and	classifica1ons	
6.  Infer	en1ty	rela1onships		
7.  Compute	similari1es,	transi1ve	cover	and	triangles	
8.  Analyze	data	using	graph	queries	and	visualiza1ons
We	need	a	Data	Model	
Meta	Data	En&&es	
•  Document,	Email,	Contract,	DB-
Record	
•  Meta:	Author,	Date,	Source,	
Keywords	
•  Conversa1on:	Sender,	Receiver,	
Topic	
•  Money	Flows	
Actual	En&&es	
•  Person	
•  Representa1ve	(Officer)	
•  Address	
•  Client	
•  Company	
•  Account	
Either	based	on	our	use	cases	&	ques1ons	
On	the	en11es	present	in	our	meta-data	and	data.
Data	Model	–	Rela&onships	
Meta-Data	
•  sent,	received,	cc‘ed	
•  men1oned,	topic-of	
•  created,	signed	
•  aFached	
•  roles	
•  family	rela1onships	
Ac&vi&es	
•  open	account	
•  manage		
•  has	shares	
•  registered	address	
•  money	flow
The	ICIJ	Data	Model
The	ICIJ	Data	Model	
•  Simplis1c	Datamodel	with	4	En11es	and	5	Rela1onships	
•  We	only	know	the	published	model	
•  Missing	
•  Documents,	Metadata	
•  Family	Rela1onships	
•  Connec1ons	to	Public	Record	Databases	
•  Contains	Duplicates	
•  Rela1onship	informa1on	stored	on	en11es	
•  Could	use	richer	labeling
Example	Dataset	-	Azerbaijan’s	President	Ilham	Aliyev	
•  was	already	previously	inves1gated	
•  whole	family	involved	
•  different	shell	companies	&	involvements	
hFp://neo4j.com/graphgist/ec65c2fa-9d83-4894-bc1e-98c475c7b57a
Based	On:	hFp://neo4j.com/blog/analyzing-panama-papers-neo4j/

Weitere ähnliche Inhalte

Ähnlich wie Investigating the Panama Papers Connections with Neo4j - Stefan Komar, Neo4j

TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...
TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...
TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...
EC-Council
 
Digital Forensics by William C. Barker (NIST)
Digital Forensics by William C. Barker (NIST)Digital Forensics by William C. Barker (NIST)
Digital Forensics by William C. Barker (NIST)
AltheimPrivacy
 

Ähnlich wie Investigating the Panama Papers Connections with Neo4j - Stefan Komar, Neo4j (20)

Large Scale Image Forensics using Tika and Tensorflow [ICMR MFSec 2017]
Large Scale Image Forensics using Tika and Tensorflow [ICMR MFSec 2017]Large Scale Image Forensics using Tika and Tensorflow [ICMR MFSec 2017]
Large Scale Image Forensics using Tika and Tensorflow [ICMR MFSec 2017]
 
Graph tour keynote 2019
Graph tour keynote 2019Graph tour keynote 2019
Graph tour keynote 2019
 
Digital forensics
Digital forensicsDigital forensics
Digital forensics
 
Graph databases and the #panamapapers
Graph databases and the #panamapapersGraph databases and the #panamapapers
Graph databases and the #panamapapers
 
Keynote: Global Media Monitoring - M. Grobelnik - ESWC SS 2014
Keynote: Global Media Monitoring - M. Grobelnik - ESWC SS 2014Keynote: Global Media Monitoring - M. Grobelnik - ESWC SS 2014
Keynote: Global Media Monitoring - M. Grobelnik - ESWC SS 2014
 
The Panama Papers: analysing it with neo4j and neo4j spatial - MINC 2016
The Panama Papers: analysing it with neo4j and neo4j spatial - MINC 2016The Panama Papers: analysing it with neo4j and neo4j spatial - MINC 2016
The Panama Papers: analysing it with neo4j and neo4j spatial - MINC 2016
 
Autopsy Digital forensics tool
Autopsy Digital forensics toolAutopsy Digital forensics tool
Autopsy Digital forensics tool
 
Digital Forensics
Digital ForensicsDigital Forensics
Digital Forensics
 
Digital forensics
Digital forensicsDigital forensics
Digital forensics
 
TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...
TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...
TakeDownCon Rocket City: “White Hat Anonymity”: Current challenges security r...
 
Neo4j and the Panama Papers - FooCafe June 2016
Neo4j and the Panama Papers - FooCafe June 2016Neo4j and the Panama Papers - FooCafe June 2016
Neo4j and the Panama Papers - FooCafe June 2016
 
Accelerating Science with Cloud Technologies in the ABoVE Science Cloud
Accelerating Science with Cloud Technologies in the ABoVE Science CloudAccelerating Science with Cloud Technologies in the ABoVE Science Cloud
Accelerating Science with Cloud Technologies in the ABoVE Science Cloud
 
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
 
Neo4j GraphTalks Oslo - Introduction to Graphs
Neo4j GraphTalks Oslo - Introduction to GraphsNeo4j GraphTalks Oslo - Introduction to Graphs
Neo4j GraphTalks Oslo - Introduction to Graphs
 
OpenNeuro: a free online platform for sharing and analysis of neuroimaging data
OpenNeuro: a free online platform for sharing and analysis of neuroimaging dataOpenNeuro: a free online platform for sharing and analysis of neuroimaging data
OpenNeuro: a free online platform for sharing and analysis of neuroimaging data
 
Best Cyberforensic Tools.pdf
Best Cyberforensic Tools.pdfBest Cyberforensic Tools.pdf
Best Cyberforensic Tools.pdf
 
stackconf 2023 | Practical introduction to OpenTelemetry tracing by Nicolas F...
stackconf 2023 | Practical introduction to OpenTelemetry tracing by Nicolas F...stackconf 2023 | Practical introduction to OpenTelemetry tracing by Nicolas F...
stackconf 2023 | Practical introduction to OpenTelemetry tracing by Nicolas F...
 
Digital Forensics by William C. Barker (NIST)
Digital Forensics by William C. Barker (NIST)Digital Forensics by William C. Barker (NIST)
Digital Forensics by William C. Barker (NIST)
 
Keynote: GraphTour Toronto
Keynote: GraphTour TorontoKeynote: GraphTour Toronto
Keynote: GraphTour Toronto
 
Ready set hack
Ready set hackReady set hack
Ready set hack
 

Mehr von Neo4j

Mehr von 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
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge Graphs
 
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
 

Kürzlich hochgeladen

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Kürzlich hochgeladen (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 

Investigating the Panama Papers Connections with Neo4j - Stefan Komar, Neo4j