neo4j.com Open in urlscan Pro
2600:9000:2611:7800:6:ae26:4c0:93a1  Public Scan

Submitted URL: https://dist.neo4j.org/
Effective URL: https://neo4j.com/
Submission: On January 24 via manual from MX — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

This website uses cookies

We use cookies to offer you a better browsing experience, analyze site traffic,
personalize content and serve targeted ads.  Learn about how we use cookies and
how you can control them in Cookie Settings. By using our site. you consent to
our use of cookies. 

Accept CookiesUse necessary cookies only

Skip to content

Neo4j Connections: Generative AI and Knowledge Graphs. Register Today North
America & Europe | Asia Pacific

Menu
Close Menu
Search
 * ProductsToggle menu
   * Graph DatabaseToggle menu
     * Neo4j Graph Database
     * Neo4j AuraDB
   * Graph Data ScienceToggle menu
     * Neo4j Graph Data Science
   * Graph ToolsToggle menu
     * Neo4j Developer Tools
     * Neo4j Workspace
     * Neo4j Bloom
     * Neo4j GraphQL Library
     * Neo4j Data Connectors
     * Cypher Query Language
   * Deployment Center
   * Professional Services
 * Use CasesToggle menu
   * Generative AI
   * Industries & Use Cases
   * Case Studies
   * Customers
 * Developers & Data ScientistsToggle menu
   * DevelopersToggle menu
     * Developer Home
     * Documentation
     * Deployment Center
     * Developer Blog
     * Community
     * Virtual Events
     * GraphAcademy
   * Data ScientistsToggle menu
     * Graph Data Science Home
     * Data Science Documentation
     * Get Started with Graph Data Science
     * Data Science Community
     * GraphAcademy for Data Science
 * Pricing
 * LearnToggle menu
   * ResourcesToggle menu
     * Resource Library
     * Neo4j Blog
     * GraphAcademy
     * Case Studies
     * Executive Insights
   * EventsToggle menu
     * Events Calendar
     * GraphSummit
     * Connections
     * Webinars
 * PartnersToggle menu
   * Find a Partner
   * Become a Partner
   * Solution Partners
   * OEM Partners
   * Technology Partners
   * Partner Portal Login
 * CompanyToggle menu
   * About Us
   * Newsroom
   * Awards and Honors
   * Graphs4Good
   * Careers
   * Culture
   * Diversity
   * Leadership
 * Aura Login
 * Support
 * Contact Us
 * Get Started Free


 * Aura Login
 * PartnersPartners: submenu
    * Find a Partner
    * Become a Partner
    * Solution Partners
    * OEM Partners
    * Technology Partners
    * Partner Portal Login

 * CompanyCompany: submenu
    * About Us
    * Newsroom
    * Awards and Honors
    * Graphs4Good
    * Careers
    * Culture
    * Diversity
    * Leadership

 * Support
 * Language: submenu
    * English
    * French

 * Search

 * ProductsProducts: submenu
   Graph Database Neo4j Graph Database Self-managed, deploy anywhere Neo4j
   AuraDB Fully managed graph database as a service Graph Data Science Neo4j
   Graph Data Science Graph analytics and modeling platform Deploy Deployment
   Center Download Neo4j to get started Professional Services The world’s best
   graph database consultants
   Graph Tools Neo4j Developer Tools Desktop, Browser, and Data Importer Neo4j
   Workspace Import, Explore, and Query Neo4j Neo4j Bloom Easy graph
   visualization and exploration Neo4j GraphQL Library Low-code, open source API
   library Neo4j Data Connectors Apache Kafka, Apache Spark, and BI tools Cypher
   Query Language Powerful, intuitive, and graph-optimized

 * Use CasesUse Cases: submenu
    * Generative AI Back your LLMs with a knowledge graph for better business AI
    * Industries & Use Cases Fraud detection, knowledge graphs and more
    * Case Studies In-depth looks at customer success stories
    * Customers Companies, governments and NGOs using Neo4j

 * Developers & Data ScientistsDevelopers & Data Scientists: submenu
   Developers Developer Home Best practices, how-to guides and tutorials
   Documentation Manuals for Neo4j products, Cypher and drivers Deployment
   Center Get Neo4j products, tools and integrations Developer Blog Deep dives
   into more technical Neo4j topics Community A global forum for online
   discussion Virtual Events Global developer conferences and workshops
   GraphAcademy Free online courses and certifications
   Data Scientists Graph Data Science Home Learn what Neo4j offers for data
   science Data Science Documentation Manual for the Graph Data Science library
   Get Started with Graph Data Science Download our software or get started in
   Sandbox today! Data Science Community A global forum for online discussion
   GraphAcademy for Data Science Free online courses and certifications for data
   scientists

 * Pricing
 * LearnLearn: submenu
   Resources Resource Library White papers, data sheets and more Neo4j Blog
   Daily reads on general Neo4j topics GraphAcademy Free online courses and
   certifications Case Studies In-depth looks at customer success stories
   Executive Insights Get to Know Graph Technology
   Events Events Calendar Live online events, trainings and demos GraphSummit
   Live events around the world Connections Our ongoing digital event series
   Webinars Upcoming live and on-demand webinars

 * Contact Us
 * Get Started Free


WARNING: JAVASCRIPT IS DISABLED ON YOUR BROWSER. PARTS OF NEO4J.COM WILL NOT
WORK PROPERLY.




GENAI APPS,
GROUNDED IN YOUR DATA

Power your applications with knowledge graphs. Backed by the only graph database
with vector search.

Get Started for Free Explore GenAI

Innovation Leaders Rely on Graph




NEO4J NAMED A VISIONARY IN 2023 GARTNER MAGIC QUADRANT™

Learn More

GRAPH DATABASE & ANALYTICS


REALIZE THE POSSIBILITIES
WITH OUR FULL GRAPH STACK

Native graph storage, data science, ML, analytics, and visualization with
enterprise-grade security controls to scale your transactional and analytical
workloads – without constraints.

Explore our full graph stack


GRAPH DATA SCIENCE


IMPROVE MODELS. SHARPEN PREDICTIONS.

Built by data scientists for data scientists, Neo4j Graph Data Science unearths
and analyzes relationships in connected data to increase ML model accuracy and
drive contextual AI – making better predictions with the data you already have.

Discover graph data science

JOIN OUR GLOBAL COMMUNITY


BUILD SMARTER APPS. FASTER.

Develop intelligent applications quickly and collaborate with a global network
of developers, data scientists, and innovators, while sharing resources,
insights, and technical expertise.

Start building today


ENTERPRISE-GRADE PERFORMANCE


SCALE AND FLEXIBILITY FOR THE
MOST DEMANDING WORKLOADS


GRAPH-NATIVE SCALE

Efficiently scale horizontally to handle high-throughputs and very large data
sets with billions of connections. Autonomous Clustering streamlines server
administration, enabling additional database copies or shards while maintaining
top performance and availability.

Scale Neo4j with confidence

→


FLEXIBILITY FOR CONNECTED DATA

Benefit from the flexibility of the graph database model, supporting real-time
updates to graph ontology and multi-database functionality. The
whiteboard-friendly schema adapts as business needs change and serves diverse
departmental needs.

Unlock operational flexibility

→


ELIMINATE JOINS, SIMPLIFY QUERYING

Neo4j makes querying simple by eliminating tables and joins. Experience Cypher,
our powerful query language that simplifies data analysis with 10x less code
than SQL.

Explore Cypher



Cypher
MATCH (p:Product)-[:CATEGORY]->(l:ProductCategory)-[:PARENT*0..]
->(:ProductCategory {name:"Dairy Products"})
RETURN p.name


SQL
SELECT p.ProductName
FROM Product AS p
JOIN ProductCategory pc ON (p.CategoryID = pc.CategoryID 
AND pc.CategoryName = "Dairy Products")

JOIN ProductCategory pc1 ON (p.CategoryID = pc1.CategoryID)
JOIN ProductCategory pc2 ON (pc1.ParentID = pc2.CategoryID 
AND pc2.CategoryName = "Dairy Products")

JOIN ProductCategory pc3 ON (p.CategoryID = pc3.CategoryID)
JOIN ProductCategory pc4 ON (pc3.ParentID = pc4.CategoryID)
JOIN ProductCategory pc5 ON (pc4.ParentID = pc5.CategoryID 
AND pc5.CategoryName = "Dairy Products");
                            

Google

Microsoft

Amazon AWS


ANY CLOUD. ANY ARCHITECTURE.

Run Neo4j in the cloud of your choice for a fully managed experience, or
on-premise and self-hosted to meet the most strict data security requirements.

GRAPH-AS-A-SERVICE

Deploy like a pro. No infrastructure or system access required.

CLOUD MANAGED SERVICES

Get the perfect fit. Deploy in your own data centers or VPC.

SELF-HOSTED

Total control, infinite possibilities. Bring your own license and deploy
anywhere.

Find the right partner


READY TO GET STARTED?

Neo4j has been downloaded over 2 million times and has a large global community
of developers.

Get Started for Free
Products
 * Neo4j Graph Database
 * Neo4j AuraDB
 * Neo4j Graph Data Science
 * Deployment Center
 * Professional Services
 * Pricing

Graph Tools
 * Neo4j Developer Tools
 * Neo4j Workspace
 * Neo4j Bloom
 * Neo4j GraphQL Library
 * Neo4j Data Connectors
 * Cypher Query Language

Use Cases
 * Generative AI
 * Industries & Use Cases
 * Case Studies
 * Customers

Developers
 * Developer Home
 * Documentation
 * Deployment Center
 * Developer Blog
 * Community
 * Virtual Events
 * GraphAcademy

Data Scientists
 * Graph Data Science Home
 * Data Science Documentation
 * Get Started with Graph Data Science
 * Data Science Community
 * GraphAcademy for Data Science

Learn
 * Resource Library
 * Neo4j Blog
 * GraphAcademy
 * Case Studies
 * Executive Insights
 * Events Calendar
 * Graph Summit
 * Connections
 * Webinars

Partners
 * Find a Partner
 * Become a Partner
 * Solution Partners
 * OEM Partners
 * Technology Partners
 * Partner Portal Login

Company
 * About Us
 * Newsroom
 * Awards and Honors
 * Graphs4Good
 * Careers
 * Culture
 * Diversity
 * Leadership
 * Support

Contact Us →
 * US: 1-855-636-4532
 * Sweden: +46 171 480 113
 * UK: +44 20 3868 3223
 * France: +33 (0) 1 88 46 13 20

Social Networks






© 2024 Neo4j, Inc.
Terms | Privacy Policy | Sitemap
Anti-Corruption Policy
Neo4j®, Neo Technology®, Cypher®, Neo4j® Bloom™, Neo4j® AuraDS™ and Neo4j®
AuraDB™ are registered trademarks of Neo4j, Inc. All other marks are owned by
their respective companies.
Contact Us