I want to fetch more than 100 records from azure-cosmos DB using select query.
I am writing a stored procedure and using a select query to fetch the record.
SELECT * FROM activities a
I am getting only 100 records though there are more than 500 records. I am able to get all records usings the setting configuration provided by Azure.
I want to perform the same operation using query or stored procedure. How can I do that ??
Please suggest changes that need to accomplish.
I am writing a stored procedure and using a select query to fetch the record.
SELECT * FROM activities a
I am getting only 100 records though there are more than 500 records.
The default value of FeedOptions pageSize property for queryDocuments
is 100, which might be the cause of the issue. Please try to set the value to -1. The following stored procedure works fine on my side, please refer to it.
function getall(){
var context = getContext();
var response = context.getResponse();
var collection = context.getCollection();
var collectionLink = collection.getSelfLink();
var filterQuery = 'SELECT * FROM c';
collection.queryDocuments(collectionLink, filterQuery, {pageSize:-1 },
function(err, documents) {
response.setBody(response.getBody() + JSON.stringify(documents));
}
);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With