<How to implement `&amp;&amp;` (overlap) operator ...
# stackoverflow
u
How to implement `&amp;&amp;` (overlap) operator of postgres in DynamoDB? How to implement && (overlap) operator of postgres in DynamoDB? Like postgres behaves - select array[1, 2, 3] && array[2, 3]; -> true select array[1, 2, 3] && array[3, 4]; -> true select array[1, 2, 3] && array[4, 5]; -> false