We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cffbb commit 6d9e999Copy full SHA for 6d9e999
cypher/Create_Typescript_index_for_name.cypher
@@ -0,0 +1,3 @@
1
+// Create index for the name for Typescript nodes
2
+
3
+CREATE INDEX INDEX_TYPESCRIPT_NAME IF NOT EXISTS FOR (typescript:TS) ON (typescript.name)
scripts/prepareAnalysis.sh
@@ -50,6 +50,7 @@ fi
50
# Preparation - Create indices
51
execute_cypher "${CYPHER_DIR}/Create_Java_Type_index_for_full_qualified_name.cypher"
52
execute_cypher "${CYPHER_DIR}/Create_Typescript_index_for_full_qualified_name.cypher"
53
+execute_cypher "${CYPHER_DIR}/Create_Typescript_index_for_name.cypher"
54
55
# Preparation - Enrich Graph for Typescript by adding "module" and "name" properties
56
execute_cypher "${TYPESCRIPT_CYPHER_DIR}/Add_module_properties.cypher"
0 commit comments