08-06-2020 06:42 AM
I have a pipeline which along the way checks for a presence of a particular value. If there is no value it should exit without errors but not execute the the rest of the pipelines. How do I achive that?
For example:
Solved! Go to Solution.
08-06-2020 07:01 AM
Hi @kokimura,
Perhaps you could use the object.hasPath(field) function to check for the existence of a field in a Filter Snap, in order to stop the invalid documents from propagating further down the pipeline and cause errors in the downstream snaps.
BR,
Dimitri
08-06-2020 07:01 AM
Hi @kokimura,
Perhaps you could use the object.hasPath(field) function to check for the existence of a field in a Filter Snap, in order to stop the invalid documents from propagating further down the pipeline and cause errors in the downstream snaps.
BR,
Dimitri
08-25-2020 12:33 PM
Dmitri, that worked. Thank you!