Hello everyone, I modeled an application architecture in Neo4j including the following relationship Application --[uses]--> Function. I can easily list all applications and their functions:
Match rel=(app:Applikation)-->(func:Funktion) return app.name, count(func.name) as AnzahlFunc, collect(func.name) order by AnzahlFunc desc Now I additionally want to return the number of functions exclusively used by the application (this function is not used by any other applications) and functions that are used by other applications as well. The result set should look as follows: 1) Name of the app 2) Number of used functions in total 3) Number of exclusively used functions 4) Number of shared functions Unfortunately I need assistance with constructing the cypher statement. Thanks a lot! Thomas -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
