FacetSearchRequestContainer

FacetSearchRequestContainer
FacetSearchRequestContainer
JSON Example
{
    "limit": 0,
    "offset": 0,
    "query": [
        {
            "key": "string",
            "value": "string",
            "values": [
                "string"
            ],
            "matchingMethod": "string",
            "negated": false,
            "start": 0,
            "end": 0
        }
    ],
    "facetQuery": "string",
    "facetQueryMatchingMethod": "string"
}
integer As int32 As int32
limit
Optional

The number of results to return. Default: 100, Maximum allowed: 1000

integer As int32 As int32
offset
Optional

The number of results to skip before returning values. Default: 0

query
Optional

A list of queries by which to limit the search results. Entities that match ALL queries in the list are returned

string
facetQuery
Optional

A string against which facet results are compared. If the facet result CONTAINs, STARTSWITH, or is an EXACT match for this value, as specified by facetQueryMatchingMethod, then it is returned.

string
facetQueryMatchingMethod
Optional

The matching method used to filter when 'facetQuery' is used. Defaults to CONTAINS.

Possible values are : CONTAINS, STARTSWITH, EXACT, TAGPATH,