collection #
Instantiates a new Collection object.
collection(collection, [index]) #
Arguments | Type | Description |
---|---|---|
collection | string | The name of the collection you want to manipulate |
index | string | The name of the index containing the collection |
If no index
is provided, the factory will take the default index set in the main Kuzzle SDK instance. If no default index has been set, an error is thrown.
The index
argument takes precedence over the default index.
Return Value #
Returns a Collection object.
Usage #
var collection = kuzzle.collection('collection', 'index');
// or using a default index:
var
kuzzle = new Kuzzle('localhost', {defaultIndex: 'index'});
collection = kuzzle.collection('collection');
Edit this page on Github(opens new window)