This is my index
{
"mappings": {
"page": {
"properties": {
"company-product-skus": {
"type": "text",
"include_in_all": false,
"analyzer": "keyword",
"index": "not_analyzed"
}
}
}
}
}
This is data i have
... "company-product-skus": [ "5-pseudo", "4-test" ], ...
How should i query to fetch exact matched documents only ?
use case:
query: 5-pseudo - return document
query: 5-pseu - does not return
Thanks in advance