Searching
Searching is self-explanatory. We search for some words in an index of documents. Let's see how it's done in more detail.
Last updated
Was this helpful?
Searching is self-explanatory. We search for some words in an index of documents. Let's see how it's done in more detail.
Last updated
Was this helpful?
Was this helpful?
POST http://localhost:8201/search/your_index_id
{
"query": "business plan"
}curl \
-X POST \
--header "Content-Type: application/json" \
--data '{ "query": "business plan" }' \
http://localhost:8201/search/your_index_id{
"numberOfResults": 3,
"totalResults": 10,
"results": [
{
"id": "213",
"title": "Business Plan February 2018"
}
]
}