If you’re getting a PostgreSQL error that reads “searching for elements in multidimensional arrays is not supported“, it’s probably because you’re trying to perform an operation against a multi dimensional array when that operation only supports one dimensional arrays.
To fix this issue, perform the operation against a one dimensional array instead. You may be able to do this by applying the unnest()
function against the multi dimensional array.