I have a table of Search Terms in Analytics of ElasticSearch with the columns of document_ids of their products, Analytics tags, and clicks. I am searching the query on Postman using Search API of Elasticsearch to get the list of products according to the tags assigned to it like:
{
"query": "jeans",
"analytics": {
"tags": ["1234"]
}
}
The search result of products doesn't show me those products we have gathered through Analytics clicks API of ElasticSearch. It gives me the list of products according to their score. I want the result that also shows a list of those products which I have collected by using Analytics clicks API. Kindly guide me about it.
Thanks