neo4j
library.
NEO4J_URI
environment variable to the URI of the Neo4j database.
Parameter | Type | Default | Description |
---|---|---|---|
uri | Optional[str] | None | Neo4j connection URI. Uses NEO4J_URI if not set. |
user | Optional[str] | None | Neo4j username. Uses NEO4J_USERNAME if not set. |
password | Optional[str] | None | Neo4j password. Uses NEO4J_PASSWORD if not set. |
database | Optional[str] | None | Specific database name to connect to. |
enable_list_labels | bool | True | Enable listing node labels. |
enable_list_relationships | bool | True | Enable listing relationship types. |
enable_get_schema | bool | True | Enable schema information retrieval. |
enable_run_cypher | bool | True | Enable Cypher query execution. |
Function | Description |
---|---|
list_labels | List all node labels in the graph database. |
list_relationships | List all relationship types in the graph database. |
get_schema | Get comprehensive schema information about the graph. |
run_cypher | Execute Cypher queries on the graph database. |