Hi
Is it possible to use a PrefixSearch with Appsearch?
With Elasticsearch it's easy. Something like that:
{
"query": {
"match_phrase_prefix": {
"aaaa_record$string": {
"query": "2a02:168:2132:"
}
}
}
}
or
{
"query": {
"prefix": {
"aaaa_record$string": {
"value": "2a02:168:2132:"
}
}
}
}
Any idea how to use it with AppSearch?