sinter #
Returns the intersection of the provided sets of unique values.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_sinter?keys=key1,key2,...
Method: GET
Other protocols #
{
"controller": "ms",
"action": "sinter",
"keys": ["key1", "key2", "..."]
}
Argument #
keys
: list of set identifiers to intersect
Response #
Returns an array of intersected values.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "sinter",
"collection": null,
"index": null,
"result": [
"value1",
"value2",
"..."
]
}
Edit this page on Github(opens new window)