Cantemo search

Cantemo search allows us to run an item search by its metadata. Once, we set the metadata on 'search document', Cantemo send back all items that are related to this metadata.

main

Search document
It is the metadata to search in items.

Full description of the search API can be found here: {cantemo_address}/docs/DevelopmentGuide/rest/search.html

sample search request

{
    "query": search_string,
    "filter": {
        "operator": "AND",
        "terms": [
           {
                "name": "portal_deleted",
                "missing": True
            }
        ]
    }
}

Returned values
The output of this task, search_result is structured as follows: main