Every action below is available as a verb in Cerebral OS — callable from a Cerebral, a Map, or the Runtime API. All executions are governed, audited, and dry-run safe.
Create Node
neo4j_auradb:create_node
Create a new node in the Neo4j database with specified labels and properties.
Write
Medium risk
Create Relationship
neo4j_auradb:create_relationship
Create a relationship between two nodes.
Write
Medium risk
Delete Node
neo4j_auradb:delete_node
Delete a node by its internal ID. Optionally force delete with all relationships.
Write
High risk
Delete Relationship
neo4j_auradb:delete_relationship
Delete a relationship by its internal ID.
Write
High risk
Execute Cypher
neo4j_auradb:execute_cypher
Execute a Cypher query against the Neo4j AuraDB instance.
Write
Medium risk
Find Nodes
neo4j_auradb:find_nodes
Find nodes by label and optional property filters.
Read
Low risk
Find Path
neo4j_auradb:find_path
Find the shortest path between two nodes.
Read
Low risk
Find Relationships
neo4j_auradb:find_relationships
Find relationships connected to a specific node.
Read
Low risk
Get Database Info
neo4j_auradb:get_database_info
Get basic information about the Neo4j database including node/relationship counts and labels.
Read
Low risk
Update Node
neo4j_auradb:update_node
Update properties of an existing node by its internal ID.
Write
Medium risk