I've come across a strange issue. I have a nested json that I'm using the Arrays function under data manipulation to pull out information using Find All.
Works great for first level, but when I include a filter for the second level using dot notation the error I'm getting is it can't find the variable.
The data structure is like below for one record
match:[{N: 1, B: 2, C:{a: 1, b: [{x:3,y:2},{x:2, y:4}]},},โฆ] (with the 3 dots denoting other records in the array.
So when I use dot notation to filter below
$this.C.b.y = 2 to find the objects that contain 2, I get the error 'Unable to locate var'