sdiff #
Returns the difference between a reference set and a list of other sets.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_sdiff/<_id>?keys=key1,key2,...
Method: GET
Other protocols #
{
"controller": "ms",
"action": "sdiff",
"_id": "<key>",
"keys": ["key1", "key2", "..."]
}
Argument #
_id
: reference set key identifierkeys
: list of sets to compare to the reference set
Response #
Returns an array of differences.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "sdiff",
"collection": null,
"index": null,
"result": [
"diff value1",
"diff value2",
"..."
]
}
Edit this page on Github(opens new window)