Please enable JavaScript.
Coggle requires JavaScript to display documents.
Learning Neo4j 3.x - Coggle Diagram
Learning Neo4j 3.x
Cypher Common
-
-
-
-
-
-
-
-
WITH "jdbc:mysql://localhost:3306/testdb?user=root AS testdb CALL apoc.load.jdbc(testdb, "countries") YIELD row AS line CREATE...
WITH "file:///countries.xml" AS url CALL apoc.load.xml(url) YIELD value AS earth UNWIND earth._children AS continent MERGE...
-
-
-
-
Name Convention
-
-
Relations
UPPER_SNAKE_CASE (HAS_A, IS_PART_OF)
-
-
-
-
-
-
-
-
-
Spatial
-
Apoc
-
-
CALL apoc.spatial.geocodeOnce('143 Avenue de Versailles,75016, PARIS FRANCE) YIELD location RETURN location.latitude, location.longitude
Spatial
-
CREATE (me:Person {name:"me", longitude: 1.1, latitude: 2.2}) WITH me CALL spatial.addNode("Vietnam Map", me) YIELD node RETURN node
-
CALL spatial.closest('map_ET_Paris.osm', {lat:48.858093, lon:2.294694}, 1) YIELD node MATCH...
Security
-
Commands
-
-
-
CALL dbms.security.createUser("username", "password", true)
-
-
CALL dbms.security.addRoleToUser("roleName", "userName")
CALL dbms.security.removeRoleFromUser("roleName", "userName")
CALL dbms.security.changeUserPassword("userName", "newPassword", true)
CALL dbms.security.changePassword("newPassword", true)
-
-
-
-
-