We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello!
For the Condition builder, its not possible to do this:
The issue is in the file testConditions.js Where:
if (type.startsWith('data')) { let dataPath = data.dataPath.trim().replace('@', '.'); const isInsideBrackets = dataPath.startsWith('{{') && dataPath.endsWith('}}'); if (isInsideBrackets) { dataPath = dataPath.slice(2, -2).trim(); } const parsedPath = keyParser(dataPath, workflowData.refData); dataPath = `${parsedPath.dataKey}.${parsedPath.path}`; return objectPath.has(workflowData.refData, dataPath); // here }
Where it should, like for the other, parse it with
await renderString(...);
I doesn't have the time to do a pull request/test it, soo if someone can do it for me, thx ! :)
Have a nice day ❤️
The text was updated successfully, but these errors were encountered:
feat: support full expression in conditions builder(#1596)
8aaabfc
Successfully merging a pull request may close this issue.
Hello!
For the Condition builder, its not possible to do this:
The issue is in the file testConditions.js
Where:
Where it should, like for the other, parse it with
I doesn't have the time to do a pull request/test it, soo if someone can do it for me, thx ! :)
Have a nice day ❤️
The text was updated successfully, but these errors were encountered: