collectionMapping #
Creates a new CollectionMapping object, using its constructor.
collectionMapping([mapping]) #
Arguments | Type | Description |
---|---|---|
mapping | JSON Object | Optional mapping |
Return Value #
Returns the newly created CollectionMapping object.
Usage #
let dataMapping = kuzzle
.collection('collection', 'index')
.collectionMapping({someField: {type: 'string', index: 'analyzed'}})
.apply(function (error, result) {
// called once the mapping action has been completed
});
Edit this page on Github(opens new window)