Skip to content

Commit d34a35e

Browse files
committed
Emphasize Java language dependent projection creation
1 parent 710c8f9 commit d34a35e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cypher/Dependencies_Projection/Dependencies_4c_Create_Undirected_Type_Projection.cypher renamed to cypher/Dependencies_Projection/Dependencies_4c_Create_Undirected_Java_Type_Projection.cypher

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Create filtered Type node projection without zero-degree nodes, external types, java types or duplicates. Variables: dependencies_projection. Requires 'Label_base_java_types', 'Label_buildin_java_types' and 'Label_resolved_duplicate_types' of 'Types' directory.
1+
// Create filtered Java Type node projection without zero-degree nodes, external types, java types or duplicates. Variables: dependencies_projection. Requires 'Label_base_java_types', 'Label_buildin_java_types' and 'Label_resolved_duplicate_types' of 'Types' directory.
22

3-
MATCH (internalType:Type&!PrimitiveType&!Void&!JavaType&!ResolvedDuplicateType&!ExternalType)
3+
MATCH (internalType:Java&Type&!PrimitiveType&!Void&!JavaType&!ResolvedDuplicateType&!ExternalType)
44
OPTIONAL MATCH (internalType)-[typeDependency:DEPENDS_ON]->(dependentType:Type&!PrimitiveType&!Void&!JavaType&!ResolvedDuplicateType&!ExternalType)
55
WITH internalType
66
,typeDependency

scripts/projectionFunctions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ createUndirectedJavaTypeDependencyProjection() {
238238
execute_cypher "${PROJECTION_CYPHER_DIR}/Dependencies_2_Delete_Subgraph.cypher" "${@}" >/dev/null
239239

240240
local projectionResult
241-
projectionResult=$( execute_cypher "${PROJECTION_CYPHER_DIR}/Dependencies_4c_Create_Undirected_Type_Projection.cypher" "${@}")
241+
projectionResult=$( execute_cypher "${PROJECTION_CYPHER_DIR}/Dependencies_4c_Create_Undirected_Java_Type_Projection.cypher" "${@}")
242242
if is_csv_column_greater_zero "${projectionResult}" "relationshipCount"; then
243243
true;
244244
else

0 commit comments

Comments
 (0)