Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-13-2021 10:59 AM
Hi,
I am getting no results in a Bloom search with custom query that first used to work fine and now returns to results. When I copy and past the query into the browser and create some params to mimic the passed parameters in Bloom, I get results that are expected.
:param numlevels => 4
:param cpcstart =>'H01L21/0228'
MATCH (a:cpc {subgroup: $cpcstart}) CALL apoc.path.expand(a, "Reports_to", ">cpc", 1, $numlevels) YIELD path RETURN path
In Browser returns the nodes and relationships as expected
In Bloom I am getting no results.
Andy
09-14-2021 12:58 PM
It looks like there is a space at the end of your Bloom search term. Perhaps that space character is being picked up and the Cypher parameter ends up being "H01L21/0228 ", which doesn't match because of the trailing whitespace.
Could you try it without the space at the end (or try using the trim
Cypher function, i.e. {subgroup: trim($cpcstart)}
All the sessions of the conference are now available online