Skip to content

Instantly share code, notes, and snippets.

@aquiladev
Last active June 8, 2017 08:26
Show Gist options
  • Save aquiladev/2bfcf22b126dac092169811c70c88d32 to your computer and use it in GitHub Desktop.
Save aquiladev/2bfcf22b126dac092169811c70c88d32 to your computer and use it in GitHub Desktop.
function query(continuationToken) {
var query = new azure.TableQuery();
tableService.queryEntities(
table,
query,
continuationToken,
function(error, result, response) {
//HERE IS LOGIC
if (result.continuationToken) {
query(result.continuationToken);
}
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment