-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
Hi,
Right now I'm trying to test a deployment I made where I'm checking if one or more values are present on a specific field in any item. As such, this is what I'm sending:
--additional-params {\"queryParams\":{\"tag\":\"Rust\",\"tag\":\"nodejs\",\"op\":\"or\"}}
I can use the tag parameter on the multiValueQueryStringParameters object, as such:
{
"queryStringParameters": {
"op": "or"
},
"multiValueQueryStringParameters": {
"tag": ["Rust","nodejs"]
},
"requestContext": {
"identity": {
"cognitoIdentityId": "admin123"
}
}
}
this logic is ok when I'm testing locally, but isn't working against dynamodb using the aws-api-gateway-cli-test, while there are values to be returned for such a query. What am I missing?
Gil