I wanted to write a select query to fetch all the records but I am getting error if I try to match more than one type against a array type column, for example Below query is working
SELECT * FROM Car where ("Ford") IN UNNEST (cartype)
But this query is failing
SELECT * FROM Car where (["Ford","Honda","Suzuki"]) IN UNNEST (cartype)
HTTPError 400: {"code":3, "message":"First argument to IN UNNEST of type ARRAY does not support equality comparison [at 1:42]\