This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start t=node:types(id={id}) | |
match | |
(t)<-[:has_type]-(u)<-[:metric_unit]-(ma)<-[:metric_activity]-(m)<-[cm:cycle_metric]-(c) | |
where | |
c.measureDate>={measureStart} and c.measureDate <= {measureEnd} | |
with distinct m, ma, u, c | |
match | |
(ma)-[:metric_unit]->(u)<-[:alert_for_unit]-(a)-[:alert_for_inspection]->(i)-[:has_result]->(ir) | |
<-[:for_inspection_result]-(a) | |
where | |
a.alertDate=c.measureDate | |
and ((i)<-[:metric_inspection]-(ma)) | |
and a.fromEntityType={type} | |
return ir.value as alertValue, count(ir.value) as alertCount, u.id as unitId, u.name as unitName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment