You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* --> (optional) minimum hops for a variable length relationship */
minHops: 1,
/* --> (optional) maximum hops for a variable length relationship. The value Infinity can be used for no limit on the max hops */
maxHops: 1,
The comment stating that value Infinity will be no limit for the recursion is not accurate. When entered 9999999 working perfectly fine, when entered Infinity works like for a 1 hop.
The text was updated successfully, but these errors were encountered:
tomek7667
changed the title
Infinity max hops improperly working
Bug: Infinity max hops improperly working
Aug 3, 2023
Hello, using Infinity generates a [*] relationship which matches 1 or more iterations.
So, is [*] used in the generated cypher but doesn't work as expected?
fixes#72
- Add `QueryBuilder.getVariableLengthRelationshipString` which returns
the correct inner string.
- Use it in `QueryBuilder.getRelationshipStatement`.
The comment stating that value Infinity will be no limit for the recursion is not accurate. When entered
9999999
working perfectly fine, when enteredInfinity
works like for a 1 hop.The text was updated successfully, but these errors were encountered: