This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
@VijayKasindalaIn my example, I did not include the root element. Please add it to the expression to make it work.Nit: You can always use pipeline validation to build your expression. jsonPath($, "$entity.links[?(@.rel=='next-page')].href").length > ...
You will get an IndexOutOfBoundsException if the entity does not include next-page information.update your exp to below:jsonPath($, "$.links[?(@.rel=='next-page')].href").length > 0 ? jsonPath($, "$.links[?(@.rel=='next-page')].href")[0] : null
@pradhyumna_r Can you provide some more details on this error?Are you using any custom snaps in your pipeline that implement multi-threading?Is this error triggered by an Ultra task or parent and child pipeline?