04-20-2022 03:16 AM
Hi,
Getting below expression error in mapper after join snaps:-
Expression worked for 7 previous documengts, but failed on document #8 with the error: $[‘$’] is undefined
Solved! Go to Solution.
04-20-2022 10:39 AM
This error will occur if the key "$"
does not exist in your 8th document. You can either:
$.get('$')
which will effectively produce a null
value for $['$']
downstreamnull
value (but also applies null-safe to all the fields in your mapper).04-20-2022 05:17 AM
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.
04-20-2022 10:39 AM
This error will occur if the key "$"
does not exist in your 8th document. You can either:
$.get('$')
which will effectively produce a null
value for $['$']
downstreamnull
value (but also applies null-safe to all the fields in your mapper).