sinter #
Returns the intersection of the provided sets of unique values.
Arguments #
sinter(keys, [options]);
Arguments | Type | Description |
---|---|---|
keys | string[] | List of set keys to intersect |
options | object | Optional query arguments |
options #
The options
arguments can contain the following option properties:
Property | Type (default) | Description |
---|---|---|
queuable | boolean (true) | If true, queues the request during downtime, until connected to Kuzzle again |
Resolve #
Resolves to an array of intersected values.
Usage #
try {
await kuzzle.ms.sadd('set1', ['foo', 'bar', 'hello']);
await kuzzle.ms.sadd('set2', ['world', 'baz', 'foo']);
// Prints: [ 'foo' ]
console.log(await kuzzle.ms.sinter(['set1', 'set2']));
} catch (error) {
console.error(error.message);
}
Edit this page on Github(opens new window)