I am testing Bloom 2.5.1(on Neo4j 5.3.0) with Northwind graph(made by :play northwind) according to the manual below:
https://neo4j.com/docs/bloom-user-guide/current/bloom-tutorial/search-phrases-advanced/
I got the error below when I tested Dynamic Search pharases with parameters suggestion as the manual describes:
match (c:Customer)-[r1]-(o)-[r2]-(p)-[r3]-(cat:Category)
where c.country = $country and cat.categoryName = $category
return *
"AN ERROR OCCURRED WHILE RETRIEVING SUGGESTIONS:
Cannot read properties of undefined (reading 'toString')"
No error with "No suggestions" but it occurs when I enabled the suggestions by Label-key or Cypher query.
The query returns result after I click off the error message at the start of writing the query. But it is cumbersome and looks bad when I demo in front of Neo4j customers.