SlideShare a Scribd company logo
Fullstack Graph
w/ Neo4j
William Lyon
@lyonwj
lyonwj.com
bit.ly/seattlegraph Graph Tour Seattle
William Lyon
Software Developer @Neo4j
● Neo4j Labs
■ Integrations
■ GraphQL
■ Data Visualization
■ ...
@lyonwj
lyonwj.com
will@neo4j.com
Building Fullstack Graph Applications With Neo4j
Pig E. Bank
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
https://neo4j.com/graphacademy/online-training/
Labeled Property Graph
Cypher Query Language
https://neo4jsandbox.com
Building Fullstack Graph Applications With Neo4j
neo4j.com/developer/get-started/
r.neo4j.com/youtube
medium.com/neo4j
community.neo4j.com
neo4j.com/tag/twin4j
neo4j.com/graphacademy/neo4j-certification/
●
●
●
●
●
●
●
●
○
○
○
John
Table
Mary
von
Groff
Cookie
Macy
Stream
SSN:
X-Y-Z-A
Phone:
555-1234
Building Fullstack Graph Applications With Neo4j
1.
→
2.
3.
4.
5.
Arrows for data model diagrams:
www.apcjones.com/arrows/
Building Fullstack Graph Applications With Neo4j
youtube.com/watch?v=SSjlUoFQdos
Building Fullstack Graph Applications With Neo4j
●
●
●
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
neo4j.com/labs/
Building Fullstack Graph Applications With Neo4j
Extending Neo4j
•
•
•
About APOC
• Large standard library of utility
functions and procedures
• Actively developed - many contributors
• "scratch your itch"
• Makes Cypher easier to use
• Enable some specific use-cases
• Plan is it migrate some of the functionality
into the Neo4j product
Browser Guide
:play apoc
• Explore live examples
• Relational / Cassandra
• MongoDB, Couchbase, ElasticSearch
• JSON, XML, CSV, XLS
• Cypher, GraphML
• …
Data integration
Load from a relational database
apoc.load.jdbc
WITH "jdbc:mysql://localhost:3306/customers?user=root" AS url
CALL apoc.load.jdbc(url,"parties")
YIELD row
MERGE (p:Party {id: row.PartyID})
SET p.name = row.name, p.ssn = row.SSN
Building Fullstack Graph Applications With Neo4j
1)
2)
3)
4)
neo4j.com/labs/etl-tool/
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
{event} {event}
•
•
•
neo4j.com/labs/kafka/
{event} {event}
Building Fullstack Graph Applications With Neo4j
Graph Algorithms in Neo4j
• Parallel Breadth First Search &
DFS
• Shortest Path
• Single-Source Shortest Path
• All Pairs Shortest Path
• Minimum Spanning Tree
• A* Shortest Path
• Yen’s K Shortest Path
• K-Spanning Tree (MST)
• Random Walk
• Degree Centrality
• Closeness Centrality
• CC Variations: Harmonic, Dangalchev,
Wasserman & Faust
• Betweenness Centrality
• Approximate Betweenness Centrality
• PageRank
• Personalized PageRank
• ArticleRank
• Eigenvector Centrality
• Triangle Count
• Clustering Coefficients
• Connected Components (Union Find)
• Strongly Connected Components
• Label Propagation
• Louvain Modularity – 1 Step &
Multi-Step
• Balanced Triad (identification)
• Euclidean Distance
• Cosine Similarity
• Jaccard Similarity
• Overlap Similarity
• Pearson Similarity
Pathfinding
& Search
Centrality /
Importance
Community
Detection
Similarity
Updated June 2019
Link
Prediction
• Adamic Adar
• Common Neighbors
• Preferential Attachment
• Resource Allocations
• Same Community
• Total Neighbors
+35
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
● bolt+routing://
●
●
●
neo4j.com/developer/language-guides/
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
● Fullstack framework for building applications
Fullstack GraphQL with GRANDstack
grandstack.io
@lyonwj
What is GraphQL?
graphql.org
An API query language and runtime for building APIs
@lyonwj
“Your Application Data Is A Graph”
-- GraphQL
@lyonwj
Movies, Genres,
Directors, Actors
@lyonwj
Movies, Genres, Directors, Actors
GraphQL Type Definitions
● Defined using GraphQL
Schema Definition
Language (SDL)
@lyonwj
Movies, Genres,
Directors, Actors
Introspection
● Schema can be queried
● Schema becomes API specification /
documentation
● Tools like GraphiQL / GraphQL
Playground
@lyonwj
Movies, Genres,
Directors, Actors
GraphQL query
@lyonwj
https://blog.apollographql.com/the-anatomy-of-a-graphql-query-6dffa9e9e747
Operation name and
arguments
@lyonwj
Selection set
@lyonwj https://blog.apollographql.com/the-anatomy-of-a-graphql-query-6dffa9e9e747
GraphQL query
Movies, Genres,
Directors, Actors
@lyonwj
GraphQL query
GraphQL response
Movies, Genres,
Directors, Actors
@lyonwj
1) GraphQL is an API query language, not a database query
language.
2) Limited expressivity (no projections, no aggregations, etc).
3) While GraphQL exposes your application data as a graph, it’s
not (just) for graph databases
What is GraphQL?
@lyonwj
● Overfetching
○ Less data over the wire
● Underfetching
○ Single round trip
● GraphQL Specification
● “Graphs All The Way Down”
○ Relationships vs Resources
○ Unify disparate systems (microservices)
● Simplify data fetching
○ Component based data interactions
GraphQL Advantages
@lyonwj
● Some well understood practices from
REST don’t apply
○ HTTP status codes
○ Errors
○ Caching
● Exposing arbitrary complexity to client
○ Performance considerations
● n+1 query problem
● Query costing / rate limiting
GraphQL Challenges
@lyonwj
Example API & How It’s
Built
Example GraphQL API
Neo4j Community Forum Trending Activity Feeds
community.neo4j.com
@lyonwj
communityapi.neo4jlabs.com@lyonwj
How To Build A GraphQL
Service
hackernoon.com/building-trending-activity-feeds-using-graphql-and-neo4j-e62ee790238e@lyonwj
Community Graph
http://138.197.15.1:7474/browser/
user: community
password: community@lyonwj
@lyonwj
Start With A GraphQL Schema
graphql.org/learn/schema/#type-language
@lyonwj
Start With A GraphQL Schema
Type
Definitions
@lyonwj
Start With A GraphQL Schema
API Entry Point(s)
Query & Mutation Types
@lyonwj
Start With A GraphQL Schema
API Entry Point(s)
Query & Mutation Types
graphql.org/learn/schema/#type-language
@lyonwj
● Functions that define how to “resolve” data for GraphQL request
GraphQL Resolvers
graphql.org/learn/execution/#root-fields-resolvers@lyonwj
Cypher Query
https://hackernoon.com/building-trending-activity-feeds-using-graphql-and-neo4j-e62ee790238e
@lyonwj
Resolvers
@lyonwj
Apollo Server
https://www.apollographql.com/docs/apollo-server/@lyonwj
Apollo Server
@lyonwj
Apollo Server
@lyonwj
Apollo Server
@lyonwj
Apollo Server
@lyonwj
communityapi.neo4jlabs.com@lyonwj
1) Schema Duplication
2) Mapping / translation layer from graph ←→ (???)
3) Boilerplate code
4) n+1 query problem
Common Problems With This Approach
https://blog.grandstack.io/five-common-graphql-problems-and-how-neo4j-graphql-aims-to-solve-them-e9a8999c8d43
@lyonwj
GraphQL “Engines”
● Tools for auto-generating GraphQL schema, generating
database queries from GraphQL requests
GraphQL “Engines” Overview
prisma.io aws.amazon.com/appsync hasura.io graphile.org grandstack.io
Neo4j-GraphQL
@lyonwj
Neo4j-GraphQL
● GraphQL First Development
○ GraphQL schema drives the database data model
● Generate Cypher from GraphQL
○ Single query / single round trip to database
● Generate GraphQL CRUD API from type definitions
● Auto-generated resolvers (no boilerplate!)
● Extend GraphQL functionality with Cypher
○ @cypher schema directive
Goals for Neo4j-GraphQL Integration
@lyonwj
GraphQL First Development
@lyonwj
Auto-generate GraphQL CRUD API
@lyonwj
Query & Mutation types
○ Entry point for each type
Ordering
Pagination
Complex Filter
DateTime types
https://blog.grandstack.io/complex-graphql-filtering-with-neo4j-graphql-js-aef19ad06c3e
Generate Cypher From GraphQL
@lyonwj
Extend GraphQL w/ Cypher
grandstack.io/docs/neo4j-graphql-js.html#cypher-directive
@cypher GraphQL schema directive
@lyonwj
www.npmjs.com/package/neo4j-graphql-js@lyonwj
neo4j-graphql-js
neo4j-graphql-js
apollo-server
@lyonwj
Demo
GRANDstack starter
project
grandstack.io
https://github.com/grand-stack/grand-stack-starter/tree/master/api/src@lyonwj
GRANDstack.io
@lyonwj
● Declarative database integrations for
GraphQL
● GraphQL type definitions define
database model
● Provision CRUD GraphQL API
○ Auto-generated GraphQL API
○ Schema enrichments
● Generate database queries
○ auto-generated resolvers
○ reduce boilerplate
GraphQL ”Engines”
@lyonwj
How Do GraphQL Engines Generate
Database Queries From GraphQL Requests?
resolveInfo resolver
argument
● GraphQL query AST
● GraphQL schema
● Selection set
● Variables
● ...
@lyonwj
Deploying A GraphQL
Service
GraphQL Deployment
“Traditional” Approaches Serverless Options
● PaaS
○ Heroku, AWS Elastic
Beanstalk
● Docker container
● VPS
● ...
● AWS Lambda, Google Cloud
Functions, Azure
● Serverless Framework
○ serverless.com
● Zeit Now
○ zeit.co/now
● Netlify Functions
○ netlify.com
@lyonwj
neo4j-graphql-js
apollo-server
Neo4j Cloud
AWS Lambda
GCP Functions
Static CDN
GraphQL Deployment
@lyonwj
https://blog.apollographql.com/deploy-a-fullstack-apollo-app-with-netlify-45a7dfd51b0b
@lyonwj
grandstack.io
GRANDstack
https://github.com/grand-stack/grandstack.io/issues/1
@lyonwj
GraphQL Clients
Apollo Client Alternatives
● Most popular
● Frontend integrations for:
○ React, Angular, vue.js,
scala.js,iOS, Android,
etc
● Relay
● urql
● graphql-request
● GraphiQL
● GraphQL Playground
● fetch
● <any http client>
@lyonwj
Apollo Client (for React)
@lyonwj
Apollo Client (for React)
@lyonwj
Apollo Client (for React)
@lyonwj
Query GraphQL endpoint
Render our table
@lyonwj
<Query> component
@lyonwj
Handle GraphQL response
and render table
@lyonwj
@lyonwj
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
●
●
Building Fullstack Graph Applications With Neo4j
●
●
●
●
○
○
○
●
●
Fraud
Flagger
Party Interaction Stream
Fraud Suspect Stream
Fraud Confirmation Stream
neo4j-streams
Investigation
Account Action Improved Insight
Building Fullstack Graph Applications With Neo4j
1.
a.
2.
3.
Graph Algorithm Categories in Neo4j
neo4j.com/
graph-algorithms-
book/
Pathfinding
& Search
Centrality /
Importance
Community
Detection
Link
Prediction
Finds optimal paths
or evaluates route
availability and quality
Determines the
importance of distinct
nodes in the network
Detects group
clustering or partition
options
Evaluates how
alike nodes are
Estimates the likelihood
of nodes forming a
future relationship
Similarity
Graph Algorithms in Neo4j
• Parallel Breadth First Search &
DFS
• Shortest Path
• Single-Source Shortest Path
• All Pairs Shortest Path
• Minimum Spanning Tree
• A* Shortest Path
• Yen’s K Shortest Path
• K-Spanning Tree (MST)
• Random Walk
• Degree Centrality
• Closeness Centrality
• CC Variations: Harmonic, Dangalchev,
Wasserman & Faust
• Betweenness Centrality
• Approximate Betweenness Centrality
• PageRank
• Personalized PageRank
• ArticleRank
• Eigenvector Centrality
• Triangle Count
• Clustering Coefficients
• Connected Components (Union Find)
• Strongly Connected Components
• Label Propagation
• Louvain Modularity – 1 Step &
Multi-Step
• Balanced Triad (identification)
• Euclidean Distance
• Cosine Similarity
• Jaccard Similarity
• Overlap Similarity
• Pearson Similarity
Pathfinding
& Search
Centrality /
Importance
Community
Detection
Similarity
Updated June 2019
Link
Prediction
• Adamic Adar
• Common Neighbors
• Preferential Attachment
• Resource Allocations
• Same Community
• Total Neighbors
+35
●
●
○
○
●
○
○
○
○
●
○
○
■
○
Building Fullstack Graph Applications With Neo4j
●
●
●
●
●
●
●
●
●
○ https://github.com/neo4j-contrib/neo4j-streams
○ https://www.confluent.io/hub/neo4j/kafka-connect-neo4j
●
https://grandstack.io/
●
https://www.freecodecamp.org/news/how-to-leverage-neo4j-streams-and-build-a-just-in-time-data-warehouse-64adf290f093/
● https://neo4j.com/docs/graph-algorithms/current/
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j
Building Fullstack Graph Applications With Neo4j

More Related Content

PDF
Our answer to Uber
PDF
Introducing the Apache Flink Kubernetes Operator
PDF
Galera Cluster - Node Recovery - Webinar slides
PPTX
Using the New Apache Flink Kubernetes Operator in a Production Deployment
PDF
Training Series - Build A Routing Web Application With OpenStreetMap, Neo4j, ...
PDF
MariaDB Galera Cluster presentation
PDF
NiFi Developer Guide
PDF
Actor Model and C++: what, why and how?
Our answer to Uber
Introducing the Apache Flink Kubernetes Operator
Galera Cluster - Node Recovery - Webinar slides
Using the New Apache Flink Kubernetes Operator in a Production Deployment
Training Series - Build A Routing Web Application With OpenStreetMap, Neo4j, ...
MariaDB Galera Cluster presentation
NiFi Developer Guide
Actor Model and C++: what, why and how?

What's hot (20)

PPTX
API Best Practices
PPTX
Encrypting and Protecting Your Data in Neo4j(Jeff_Tallman).pptx
PPTX
APOC Pearls - Whirlwind Tour Through the Neo4j APOC Procedures Library
PDF
Apache Spark Data Source V2 with Wenchen Fan and Gengliang Wang
PDF
RMAN - New Features in Oracle 12c - IOUG Collaborate 2017
PPTX
GPORCA: Query Optimization as a Service
PDF
Deploying Flink on Kubernetes - David Anderson
PDF
Massive service basic
PPTX
Scylla Summit 2022: Scylla 5.0 New Features, Part 1
PDF
Paris Redis Meetup Introduction
PPTX
Proxysql use case scenarios fosdem17
PDF
Neo4J 사용
PPTX
Security Considerations for API Gateway Aggregation
PDF
How Secure Are Your APIs?
PPTX
Top 10 Cypher Tuning Tips & Tricks
PDF
How to Manage Scale-Out Environments with MariaDB MaxScale
PPTX
API Security in a Microservice Architecture
PDF
Nick Fisk - low latency Ceph
PPTX
FirebaseとSPAでOGPに動的対応
PDF
Intro to Neo4j and Graph Databases
API Best Practices
Encrypting and Protecting Your Data in Neo4j(Jeff_Tallman).pptx
APOC Pearls - Whirlwind Tour Through the Neo4j APOC Procedures Library
Apache Spark Data Source V2 with Wenchen Fan and Gengliang Wang
RMAN - New Features in Oracle 12c - IOUG Collaborate 2017
GPORCA: Query Optimization as a Service
Deploying Flink on Kubernetes - David Anderson
Massive service basic
Scylla Summit 2022: Scylla 5.0 New Features, Part 1
Paris Redis Meetup Introduction
Proxysql use case scenarios fosdem17
Neo4J 사용
Security Considerations for API Gateway Aggregation
How Secure Are Your APIs?
Top 10 Cypher Tuning Tips & Tricks
How to Manage Scale-Out Environments with MariaDB MaxScale
API Security in a Microservice Architecture
Nick Fisk - low latency Ceph
FirebaseとSPAでOGPに動的対応
Intro to Neo4j and Graph Databases
Ad

Similar to Building Fullstack Graph Applications With Neo4j (20)

PDF
Full Stack Graph in the Cloud
PDF
Full Stack Development with Neo4j and GraphQL
PDF
Building Fullstack Serverless GraphQL APIs In The Cloud
PDF
Training Series: Build APIs with Neo4j GraphQL Library
PDF
Training Week: Build APIs with Neo4j GraphQL Library
PDF
Training Week: GraphQL 2022
PDF
GraphQL Bangkok meetup 5.0
PDF
PyCon Korea - Real World Graphene
PDF
Marco Liberati - Graph analytics
PDF
GraphQL ♥︎ GraphDB
PDF
All About GRAND Stack: GraphQL, React, Apollo, and Neo4j (Mark Needham) - Gre...
PDF
GraphQL + relay
PDF
API Management for GraphQL
PDF
The Apollo and GraphQL Stack
PDF
Sashko Stubailo - The GraphQL and Apollo Stack: connecting everything together
PDF
Elixir + GraphQL = Absinthe 2019.04.10
PDF
Demi Ben-Ari - Monitoring Big Data Systems Done "The Simple Way" - Codemotion...
PDF
Monitoring Big Data Systems Done "The Simple Way" - Codemotion Milan 2017 - D...
PDF
Neo4j Database and Graph Platform Overview
PDF
Modular GraphQL with Schema Stitching
Full Stack Graph in the Cloud
Full Stack Development with Neo4j and GraphQL
Building Fullstack Serverless GraphQL APIs In The Cloud
Training Series: Build APIs with Neo4j GraphQL Library
Training Week: Build APIs with Neo4j GraphQL Library
Training Week: GraphQL 2022
GraphQL Bangkok meetup 5.0
PyCon Korea - Real World Graphene
Marco Liberati - Graph analytics
GraphQL ♥︎ GraphDB
All About GRAND Stack: GraphQL, React, Apollo, and Neo4j (Mark Needham) - Gre...
GraphQL + relay
API Management for GraphQL
The Apollo and GraphQL Stack
Sashko Stubailo - The GraphQL and Apollo Stack: connecting everything together
Elixir + GraphQL = Absinthe 2019.04.10
Demi Ben-Ari - Monitoring Big Data Systems Done "The Simple Way" - Codemotion...
Monitoring Big Data Systems Done "The Simple Way" - Codemotion Milan 2017 - D...
Neo4j Database and Graph Platform Overview
Modular GraphQL with Schema Stitching
Ad

More from Neo4j (20)

PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
PDF
Jin Foo - Prospa GraphSummit Sydney Presentation.pdf
PDF
GraphSummit Singapore Master Deck - May 20, 2025
PPTX
Graphs & GraphRAG - Essential Ingredients for GenAI
PPTX
Neo4j Knowledge for Customer Experience.pptx
PPTX
GraphTalk New Zealand - The Art of The Possible.pptx
PDF
Neo4j: The Art of the Possible with Graph
PDF
Smarter Knowledge Graphs For Public Sector
PDF
GraphRAG and Knowledge Graphs Exploring AI's Future
PDF
Matinée GenAI & GraphRAG Paris - Décembre 24
PDF
ANZ Presentation: GraphSummit Melbourne 2024
PDF
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
PDF
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
PDF
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
PDF
Démonstration Digital Twin Building Wire Management
PDF
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
PDF
Démonstration Supply Chain - GraphTalk Paris
PDF
The Art of Possible - GraphTalk Paris Opening Session
PPTX
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
PDF
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Jin Foo - Prospa GraphSummit Sydney Presentation.pdf
GraphSummit Singapore Master Deck - May 20, 2025
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j Knowledge for Customer Experience.pptx
GraphTalk New Zealand - The Art of The Possible.pptx
Neo4j: The Art of the Possible with Graph
Smarter Knowledge Graphs For Public Sector
GraphRAG and Knowledge Graphs Exploring AI's Future
Matinée GenAI & GraphRAG Paris - Décembre 24
ANZ Presentation: GraphSummit Melbourne 2024
Google Cloud Presentation GraphSummit Melbourne 2024: Building Generative AI ...
Telstra Presentation GraphSummit Melbourne: Optimising Business Outcomes with...
Hands-On GraphRAG Workshop: GraphSummit Melbourne 2024
Démonstration Digital Twin Building Wire Management
Swiss Life - Les graphes au service de la détection de fraude dans le domaine...
Démonstration Supply Chain - GraphTalk Paris
The Art of Possible - GraphTalk Paris Opening Session
How Siemens bolstered supply chain resilience with graph-powered AI insights ...
Knowledge Graphs for AI-Ready Data and Enterprise Deployment - Gartner IT Sym...

Recently uploaded (20)

PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPT
Teaching material agriculture food technology
PDF
Encapsulation theory and applications.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Spectroscopy.pptx food analysis technology
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
MYSQL Presentation for SQL database connectivity
PDF
KodekX | Application Modernization Development
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Network Security Unit 5.pdf for BCA BBA.
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Teaching material agriculture food technology
Encapsulation theory and applications.pdf
Electronic commerce courselecture one. Pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Spectroscopy.pptx food analysis technology
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
20250228 LYD VKU AI Blended-Learning.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Programs and apps: productivity, graphics, security and other tools
MIND Revenue Release Quarter 2 2025 Press Release
Review of recent advances in non-invasive hemoglobin estimation
MYSQL Presentation for SQL database connectivity
KodekX | Application Modernization Development
Diabetes mellitus diagnosis method based random forest with bat algorithm
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Unlocking AI with Model Context Protocol (MCP)
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Network Security Unit 5.pdf for BCA BBA.

Building Fullstack Graph Applications With Neo4j