I have users table, users have user_id field.
I need to get all the user details with given list, like ["1234","3456"].
There is no contain like queries in Boto3.
I'm using
response = table.scan(FilterExpression=Attr('user_id').is_in(["1234","3456"]))
But I'm not getting the expected results.
Correct me If I missed anything.
in(["1234","3456"])instead ofis_in.