doqmentdb icon indicating copy to clipboard operation
doqmentdb copied to clipboard

A Promise-Based DocumentDB ODM Client for NodeJS

Results 15 doqmentdb issues
Sort by recently updated
recently updated
newest added

Add the ability to add custom headers, e.g: `maxItemCount`, `continuation`, etc..

How can I extend the set of UDF´s provided (like $in, $exists and so on) by writing one by myself?

How do I model relationships with doqmentDB? Like say I have Players and Clubs, how do I specify that Club has many Players and a player belongs to a Club?...

Huge fan of this library so far, Azure just released a bunch of useful new functions that would be incredibly beneficial for me in my current project. Is there a...

PRs plz!
Needs-Feedback

When i try to create a new user like this: users.create({ name: req.body.name, email: req.body.email, password: req.body.password}) .then(console.log) .catch(console.log); I only get an unhandled rejection error. Screenshot of the Error...

I am catching an error and sending a response with Express + DoqmentDB like this: ``` foo.create({ foo: bar }).then(function () { res.json("Success"); }).catch(function (err) { res.status(500).json(err); }); ``` The...

PRs plz!

The current manager.js find function always call toArray which enumerate all the results and can make fill up the memory or cause throttling, you may need to support using queryIterator.executeNext...

PRs plz!

Hi! Thanks for the library! Can you pls tell me how to write a schema with nested objects (which also should have schema)? Thank you!

use the resource `_etag` to manage concurrency control locally.

add redis-like opeations, e.g: `$incr`, `$incrby`, etc.. but maybe with a different names