cozysdk Map Reduce functions
Queries in cozy are made using couchdb map/reduce view system. Read more in the tutorial.- Tutorials:
Methods
(static) defineView(docType, name, request, callbackopt)
Define a map/reduce request for a given doc type.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
docType |
string | The doctype you want to create a view on. | |
name |
string | The name of the view to create. | |
request |
string | function | object | The request to define. it can either be a function, a string (function.toString()) or an object with map & reduce attributes. | |
callback |
callback |
<optional> |
A node.js style callback |
Examples
callback
byTitle = function(doc) { emit(doc.title); }
cozysdk.defineView('Note', 'all', byTitle, function(err){
// view has been created
});
promise
byTitle = function(doc) { emit(doc.title); }
cozysdk.defineView('Note', 'all', byTitle)
(static) destroyByView(docType, name, params, callbackopt)
Destroy every documents that would have been returned by a call to
queryView with the same parameters.
Destroy all DocumentsQuery a map/reduce view.
It accepts CouchDB like params.
Parameters:
Name | Type | Attributes | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
docType |
string | The doctype you want to query a view on. | |||||||
name |
string | The name of the view to query. | |||||||
params |
object | The same query parameters than
queryView.
Properties
|
|||||||
callback |
callback |
<optional> |
A node.js style callback |
Examples
callback
params = {startkey 'A', endkey: 'B'}
cozysdk.destroyByView('Note', 'byTitle', params, function(err){
// destroy all notes with a title starting by A
});
promise
params = {startkey 'A', endkey: 'B'}
cozysdk.destroyByView('Note', 'byTitle', params)
(static) queryView(docType, name, params, callbackopt)
Query a map/reduce view.
It accepts CouchDB like params.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
docType |
string | The doctype you want to query a view on. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name |
string | The name of the view to query. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
params |
object | The query parameters.
Properties
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
callback |
callback |
<optional> |
A node.js style callback |
Examples
callback
params = {startkey 'A', endkey: 'B'}
cozysdk.queryView('Note', 'byTitle', params, function(err){
// get all notes with a title starting by A
});
promise
params = {startkey 'A', endkey: 'B'}
cozysdk.queryView('Note', 'byTitle', params)