Commit 848a655e authored by Tristan Cavelier's avatar Tristan Cavelier

query.js: doc string added

parent 5d3af8bd
...@@ -13,6 +13,11 @@ var Query = newClass(function() { ...@@ -13,6 +13,11 @@ var Query = newClass(function() {
* @param {Array} item_list The list of object * @param {Array} item_list The list of object
* @param {Object} [option={}] Some operation option * @param {Object} [option={}] Some operation option
* @param {String} [option.wildcard_character="%"] The wildcard character * @param {String} [option.wildcard_character="%"] The wildcard character
* @param {Array} [option.select_list=undefined] A object keys to retrieve
* @param {Array} [option.sort_on=[]] Couples of object keys
* and "ascending" or "descending"
* @param {Array} [option.limit=undefined] Couple of integer, first is an
* index and second is the length.
* @return {Array} The new item list * @return {Array} The new item list
*/ */
this.exec = function (item_list, option) {}; this.exec = function (item_list, option) {};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment