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
After hunting around into it more, it seems that we need to add a RefExpression possibility to the ComparisonExpression rules in expression.pegjs to parse it correctly.
Actually. After looking into the expression parser, I realized I simply needed to remove the brackets around the RefExpression.
e.g. instead of $user__id in [$visitorTypes.filter($user__is_new == 1).collect($UserId)] it's $user__id in $visitorTypes.filter($user__is_new == 1).collect($UserId)
Fails with
While
Doesn't throw that error (but still fails due to #166)
The text was updated successfully, but these errors were encountered: