I am pulling profile data from LinkedIn but only want to grab the persons current job details and not their past roles where they are no longer involved.
The HTTP request pulls an array of job roles for a profile.
I am trying to filter to just the first/latest role. Wtihout an iterator, the output in the HTTP request just displays the oldest/first job role which I’m not interested in.
I have added an Iterator which bundles all the jobs nicely. However I am not interested in Bundle 2 onwards. The only filterable difference between bundles is the end year, month, day of the role. e.g. their current and active job will have “0” in the year, month and day fields. All the past roles will have the year, month, day.
I have tried setting a filter inbetween the HTTP and the Iterator but its just ignored. I’ve tried where year does not exist (it has a 0 in the field), I’ve tried where year field length is greater than 1.
Any insights?