Query on trigger filter

Is below trigger filter correct?

$.changes[?(@.attribute == “moversdate” && @.newValue!=null)]

I only want moversdate which is not null or has some value to be pulled.

try moversdate with single quote as below:

$.changes[?(@.attribute == ‘moversdate’ && @.newValue!=null)]

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.