Я хочу искать текстовую строку в атрибуте, как мы делаем в mysql LOWER (fieldName) = LIKE% strtolower (search_text)%. Я сделал несколько действий, но не нашел никакого решения.
{
"TableName": "DEV_postTbl",
"ProjectionExpression": "postId, postType, postStatus",
"ScanIndexForward": false,
"Limit": 6,
"KeyConditionExpression": "postStatus =:postStatusPublished",
"IndexName": "postStatus-createdOn-index",
"FilterExpression": " ( contains( postTitle, :searchText) OR contains(postDescription, :searchText) OR contains(postLocation.addressLine, :searchText) ) ",
"ExpressionAttributeValues": {
":searchText": "hello",
":postStatusPublished": "published"
}
}
Это мой код ... но этот поиск только "привет" вместо "Привет", "heLLO", как это