Hi,
Goal is to create a custom query within Bloom that set some property values which I use to resize the display size of the nodes.
The custom search phrase uses this and I have tested it in browser with fixed values instead of the replacement values in query with success.
MATCH(a:cpc)-[:Classified_as]-(b:patent)
where a.subgroup starts with "H01L21" AND b.num>$StartNum AND b.num<($StartNum+1000000)
With a, log(count(b)) as scaled
SET a.scalenum = scaled
It is returning an error:
AN ERROR OCCURRED WHILE EXECUTING SEARCH:
Invalid input 'I': expected 'o/O' (line 4, column 26 (offset: 186))
"SET a.scalenum = scaled LIMIT 1000"
Where do I go from here?
Andy