Forum Discussion
This error will occur if the key "$"
does not exist in your 8th document. You can either:
- change your expression to
$.get('$')
which will effectively produce anull
value for$['$']
downstream - or if your error is in a Mapper, you can also check the
checkbox, which will also produce a
null
value (but also applies null-safe to all the fields in your mapper).
- rohithmadhavan6 years agoEmployee
Yes, that should work