Hello there!
2nd-day discovering Postman Flows. What an amazing tool - I really do love it.
However, unfortunately, I’m not familiar with and haven’t gotten a hang of FQL yet… The syntax for some things just doesn’t click in my head.
I’ve made another one of these big Flows, but the issue I’m running into is returning some values between two fields.
Basically, I have 1 field which is the input (spotifyValueArtist
), and another field which is the already existing data (PDvalueArtist
). I want to compare these two, and only return the stuff that’s not in PDvalueArtist
Here’s a short visual representation of them:
Question:
How should the FQL look like, so I only get the values of spotifyValueArtist
that do not already exist in PDvalueArtist
?
I’ve already tried:
spotifyValueArtist[$not(PDvalueArtist)]
- just gives me an error.
$filter((spotifyValueArtist), $not (PDvalueArtist))
- returns null
Thank you so much!