documentdb-lumenize
documentdb-lumenize copied to clipboard
Aggregations (Group-by, Pivot-table, and N-dimensional Cube) and Time Series Transformations as Stored Procedures in DocumentDB
Hi, thanks for the nice store procedure! One quick question. I'm using this one on a shared CosmosDB with partition key 'pk', when I query my db with the following...
Hi, Is there a way to perform a group by + having count request? (I'm using C# and millions of documents in collection) Thank you for your lib and your...
If your group by field is a boolean field you get the following error: Unable to get property 'length' of undefined or null reference Stack trace: TypeError: Unable to get...
Hi Larry, I am in the process of porting from MongoDB to DocumentDB, I came across lumenize. How could we write this aggregate expression in lumenize? { $match:{$and:[{"Id":"A99999999"}, {$or:[ {$and:[{'dw.f':null},...
Continued from this conversation: http://stackoverflow.com/questions/39669376/documentdb-stored-procedure-continuation I implemented your suggestion to pass the Response object in as the new configuration for the stored procedure when there's a continuation. My code looks...