Hello @andy.hegedus
Bloom is using the cypher parameters it is not possible to parametrise a query in this way:
MATCH p=(a)-[*..$level]-()
RETURN p
An alternative query would be moving the filtering in the where clause
MATCH p=(a)-[*..5]-()
WHERE le...