Solved
Forum Discussion
2 Replies
- bojanvelevskiValued Contributor
You cannot use that expression. That’ basically means “Get root from root”, or something like that, and is not valid. I know that your field is called “$” so a smart thing to do is first to remap the field.
- delContributor III
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).
- change your expression to