The following query is not working
SELECT *
FROM abc p
WHERE ANY item IN p.air
SATISFIES
item.dst in (select raw a.po from port AS a where a.name=“val”)
END
if i give
item.dst in ([“ABC”,“BCD”]) then it is working.
if i run subquery separately
select raw a.airports from airports AS a where a.name=“val”.
I am getting [[“ABC”,“BCD”]]