You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Propagates "DEPENDS_ON" relations between modules to their resolved modules with a property "resolved:true".
2
+
// Inspired by https://github.com/jQAssistant/jqa-java-plugin/blob/f092122b62bb13d597840b64b73b2010bd074d1f/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L59
3
+
4
+
MATCH (module:TS:Module)-[dependsOn:DEPENDS_ON]->(externalModule:TS:ExternalModule)
5
+
MATCH (externalModule)-[:RESOLVES_TO]->(resolvedModule:TS:Module)
// Adds a relation "RESOLVES_TO" from a Typescript element to an external declaration if their global fully qualified names match.
2
+
// Inspired by https://github.com/jQAssistant/jqa-java-plugin/blob/f092122b62bb13d597840b64b73b2010bd074d1f/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
// Adds a relation "RESOLVES_TO" from an external module to a module if their global fully qualified names match.
2
+
// Inspired by https://github.com/jQAssistant/jqa-java-plugin/blob/f092122b62bb13d597840b64b73b2010bd074d1f/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
3
+
4
+
MATCH (module:TS:Module)
5
+
MATCH (externalModule:TS:ExternalModule)
6
+
WHERE (toLower(module.globalFqn) =toLower(externalModule.globalFqn)
0 commit comments