Hi, is it possible to somehow negate a boolean in NEON? I want something like this:
parameters: foo: true services: - Bar(!%foo%)
the above does not work, is there any other way? thanks.
Try this:
- Bar("!?"(%foo%))
::not(%foo%)