Skip to content

Commit 6219290

Browse files
committed
commit
1 parent 3f70945 commit 6219290

11 files changed

+14978
-1
lines changed

apoc-3.5.0.1-all.jar

12.3 MB
Binary file not shown.

auth

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
neo4j:SHA-256,98AFCD1E0B53D7A6B0C10528B4E4C98474437BEA6D97D49C552472741A8C0F7E,1A4D54E3016D1702A997D77C610686BD8377D6AEB58C2C203CCAA2F62158C544:

export (1).csv

+3,080
Large diffs are not rendered by default.

export (2).csv

+3,410
Large diffs are not rendered by default.

export.csv

+3,712
Large diffs are not rendered by default.
Binary file not shown.

neo4j-spatial-0.25.7-neo4j-3.4.9.jar

383 KB
Binary file not shown.

neo4j.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ dbms.memory.heap.initial_size=4G
342342
dbms.directories.plugins=/plugins
343343
dbms.connectors.default_listen_address=0.0.0.0
344344
dbms.connector.https.listen_address=0.0.0.0:7473
345-
dbms.connector.http.listen_address=0.0.0.0:7474
345+
#dbms.connector.http.listen_address=0.0.0.0:7474
346346
dbms.connector.bolt.listen_address=0.0.0.0:7687
347347
#causal_clustering.transaction_listen_address=0.0.0.0:6000
348348
#causal_clustering.transaction_advertised_address=8d63555a8da3:6000

nodes.csv

+3,410
Large diffs are not rendered by default.

relations.csv

+1,354
Large diffs are not rendered by default.

stat.cql

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
MATCH (n) WHERE NOT 'Metrics' IN LABELS(n) RETURN n {.*, sys_id: ID(n), labels: LABELS(n)}
2+
3+
MATCH (a) WHERE NOT 'Metrics' IN LABELS(a)
4+
MATCH (b) WHERE NOT 'Metrics' IN LABELS(b)
5+
MATCH (a)-[r]->(b)
6+
RETURN a {sys_id: ID(a)},
7+
r {.*, sys_id: ID(r), type: TYPE(r)},
8+
b {sys_id: ID(b)}
9+
//LIMIT 25
10+
111
docker run --publish 7474:7474 --publish 7687:7687 --volume /c/nodejs/dombook.neo/data:/data -
212
-volume /c/nodejs/dombook.neo/plugins:/plugins --volume /c/nodejs/dombook.neo/conf:/conf neo4j:latest
313
//STATISTICS

0 commit comments

Comments
 (0)