Skip to content

Commit

Permalink
Merge pull request #524 from t-jones/fix/case_insensitive_filters
Browse files Browse the repository at this point in the history
Fix for case sensitivity on clientFilterValues
  • Loading branch information
tabdunabi authored Dec 6, 2022
2 parents ce2bef7 + 7bf18d4 commit 1c0d945
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lambda/es-proxy-layer/lib/esbodybuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ function build_query(params) {
},
{
"term": {
"clientFilterValues": qnaClientFilter
"clientFilterValues": {
"value": qnaClientFilter,
"case_insensitive": true
}
}
}
]
Expand Down

0 comments on commit 1c0d945

Please sign in to comment.