Skip to content

Commit 69e1938

Browse files
authored
Merge pull request #277 from JohT/fix/implemented-in-relationship-for-typescript-declarations
Fix missing IS_IMPLEMENTES_IN relationship for Typescript declarations
2 parents 8a45cf5 + e824528 commit 69e1938

File tree

4 files changed

+59
-22
lines changed

4 files changed

+59
-22
lines changed

cypher/Typescript_Enrichment/Add_IS_IMPLEMENTED_IN_relationship_for_matching_declarations.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MATCH (externalModule:TS&ExternalModule)-[:EXPORTS]->(externalDeclaration:TS&ExternalDeclaration)
44
MATCH (externalModule)-[:IS_IMPLEMENTED_IN]->(internalModule:TS&Module)
5-
MATCH (externalModule)-[:EXPORTS]->(internalDeclaration:TS&!ExternalDeclaration)
5+
MATCH (internalModule)-[:EXPORTS]->(internalDeclaration:TS&!ExternalDeclaration)
66
WHERE externalDeclaration.name = internalDeclaration.name
77
WITH externalDeclaration, internalDeclaration
88
CALL { WITH externalDeclaration, internalDeclaration

graph-visualization/package-lock.json

Lines changed: 48 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/configuration/template-neo4j-v4.conf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
dbms.security.procedures.unrestricted=apoc.*,gds.*
77

88
# Memory: Java Heap Size
9-
dbms.memory.heap.initial_size=4g
10-
dbms.memory.heap.max_size=4g
9+
dbms.memory.heap.initial_size=8g
10+
dbms.memory.heap.max_size=8g
1111

1212
# Memory: The amount of memory to use for mapping the store files.
13-
dbms.memory.pagecache.size=1g
13+
dbms.memory.pagecache.size=2g
1414

1515
# Memory: Exits JVM on the first occurrence of an out-of-memory error.
1616
dbms.jvm.additional=-XX:+ExitOnOutOfMemoryError
1717

1818
# Memory: Limit the amount of memory that all of the running transaction can consume.
19-
dbms.memory.transaction.global_max_size=3g
19+
dbms.memory.transaction.global_max_size=6g
2020

2121
# Memory: Limit the amount of memory that a single transaction can consume.
22-
dbms.memory.transaction.max_size=3g
22+
dbms.memory.transaction.max_size=6g

scripts/configuration/template-neo4j.conf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
dbms.security.procedures.unrestricted=apoc.*,gds.*
77

88
# Memory: Java Heap Size
9-
server.memory.heap.initial_size=4g
10-
server.memory.heap.max_size=4g
9+
server.memory.heap.initial_size=8g
10+
server.memory.heap.max_size=8g
1111

1212
# Memory: The amount of memory to use for mapping the store files.
13-
server.memory.pagecache.size=1g
13+
server.memory.pagecache.size=2g
1414

1515
# Memory: Exits JVM on the first occurrence of an out-of-memory error.
1616
server.jvm.additional=-XX:+ExitOnOutOfMemoryError
1717

1818
# Memory: Limit the amount of memory that all of the running transaction can consume.
19-
db.memory.transaction.total.max=3g
19+
db.memory.transaction.total.max=6g
2020

2121
# Memory: Limit the amount of memory that a single transaction can consume.
22-
db.memory.transaction.max=3g
22+
db.memory.transaction.max=6g

0 commit comments

Comments
 (0)