Files
wehub-resource-sync e04ed9c211
CF: Deploy Dev Docs / deploy (push) Has been cancelled
Sync Labels / build (push) Has been cancelled
tests / unit tests (macos-latest) (push) Has been cancelled
tests / unit tests (windows-latest) (push) Has been cancelled
tests / unit tests (ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:32:45 +08:00

1.9 KiB

title, linkTitle, type, weight, description, no_list
title linkTitle type weight description no_list
Neo4j Source Source docs 1 Neo4j is a powerful, open source graph database system true

About

Neo4j is a powerful, open source graph database system with over 15 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.

Available Tools

{{< list-tools >}}

Requirements

Database User

This source only uses standard authentication. You will need to create a Neo4j user to log in to the database with, or use the default neo4j user if available.

Example

kind: source
name: my-neo4j-source
type: neo4j
uri: neo4j+s://xxxx.databases.neo4j.io:7687
user: ${USER_NAME}
password: ${PASSWORD}
database: "neo4j"

{{< notice tip >}} Use environment variable replacement with the format ${ENV_NAME} instead of hardcoding your secrets into the configuration file. {{< /notice >}}

Reference

field type required description
type string true Must be "neo4j".
uri string true Connect URI ("bolt://localhost", "neo4j+s://xxx.databases.neo4j.io")
user string true Name of the Neo4j user to connect as (e.g. "neo4j").
password string true Password of the Neo4j user (e.g. "my-password").
database string true Name of the Neo4j database to connect to (e.g. "neo4j").