From 45be483b631308ab3c4d5ca8e0023dd27c371d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?guilin=20=E6=A1=82=E6=9E=97?= Date: Tue, 19 Apr 2011 00:28:49 +0800 Subject: [PATCH] add more information about SkinCursor in Readme --- Readme.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Readme.md b/Readme.md index 896ccb8..4e9f101 100644 --- a/Readme.md +++ b/Readme.md @@ -342,4 +342,19 @@ SkinCursor See [Cursor](https://github.com/christkv/node-mongodb-native/blob/master/lib/mongodb/cursor.js#L1) of node-mongodb-native for more information. +All these methods will return the SkinCursor itself. + + sort(keyOrList, [direction], [callback]) + limit(limit, [callback]) + skip(skip, [callback]) + batchSize(skip, [callback]) + + toArray(callback) + each(callback) + count(callback) + nextObject(callback) + getMore(callback) + explain(callback) + + [Back to index](#index)