Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ Patrick Costello <[email protected]>
Silvano Luciani <[email protected]>
Stephen Sawchuk <[email protected]>
Anand Suresh <[email protected]>
Hector Rovira <[email protected]>
11 changes: 2 additions & 9 deletions lib/datastore/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,17 +552,10 @@ DatastoreRequest.prototype.delete = function(keys, callback) {
* stream instance is returned.
* @param {?error} callback.err - An error returned while making this request
* (may be null).
* @param {array} callback.entities - The list of entities returned by this
* query. Note that this is a single page of entities, not necessarily
* all of the entities.
* @param {?module:datastore/query} callback.nextQuery - If present, run another
* query with this object to check for more results.
* @param {object} callback.apiResponse - The full API response.
* @param {?error} callback.err - An error returned while making this request
* @param {object[]} callback.entities - A list of entity objects which match
* the provided keys.
* @param {?object} callback.nextQuery - If present, query with this object to
* check for more results.
* @param {?module:datastore/query} callback.nextQuery - If present, run another
* query with this object to check for more results.
* @param {object} callback.apiResponse - The full API response.
*
* @example
Expand Down