( path: TraversalPath<any, any, any>, condition: Condition, context?: QueryContext, )
| 5391 | |
| 5392 | // Export the evaluateCondition function for use by ShortestPathStep |
| 5393 | function evaluateConditionFn( |
| 5394 | path: TraversalPath<any, any, any>, |
| 5395 | condition: Condition, |
| 5396 | context?: QueryContext, |
| 5397 | ): boolean { |
| 5398 | return evaluateCondition(path, condition, context); |
| 5399 | } |
| 5400 | |
| 5401 | /** |
| 5402 | * List expression for FOREACH - literal list, property access, variable reference, or function call. |
no test coverage detected