apoc.scoring.existence
Function APOC Core
apoc.scoring.existence(5, true) returns the provided score if true, 0 if false
Usage Examples
RETURN apoc.scoring.existence(10,true) AS output;
output |
---|
10.0 |
RETURN apoc.scoring.existence(10,false) AS output;
output |
---|
0.0 |
Was this page helpful?