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
current: (cel;bindings.reslove(outputs_result).Namespaces.exists(ns, ns.ID==bindings.resolve(namespace_id))) expect: (cel; $outputs_result.Namespaces.exists(ns, ns.ID==$namespace_id))
func parseExpressionRegex(_ context.Context, in string) *Expression { .... // parse statement if out.Engine == expression.CompilerCEL { in = celBindingAdapter(in) } .... } func celBindingAdapter(in string) string { return regexp.MustCompile(`\$([\w-_]+)`).ReplaceAllString(in, "bindings.resolve('$1')") }
no
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem Statement
current: (cel;bindings.reslove(outputs_result).Namespaces.exists(ns, ns.ID==bindings.resolve(namespace_id)))
expect: (cel; $outputs_result.Namespaces.exists(ns, ns.ID==$namespace_id))
Solution Description
Alternatives
no
Additional Context
No response
Slack discussion
No response
Research
The text was updated successfully, but these errors were encountered: