-
Thinky relies on rethinkdbdash.
The package.json file will be updated as soon as I will have pushed the changes for rethinkdbdash.
-
As suggested by @colprog in neumino/thinky#50, it would be great if a Query could be cloned, for example (in JS):
``` javascript
var query = r.table('test').filter(r.row('age').gt(5)).filter(r.row('a…
-
From the doc:
> To avoid infinite recursion, getJoin will not recurse in a field that contains a document from a model that was previously fetched.
```
Comment.belongsTo Post, 'post', 'postId', 'id'…
-
say we have a document Doc
{
a: Number,
b: Number
}
a and b are both indexed. then following query would error out.
Doc.getAll(1, {index: "a"}).filter({b: 2}).run()
-
One of the most useful features of the rethink syntax for me is the ability to compound the query / promise to generate a dynamic query that is the result of an application of several parameters (filt…
-
**Privacy**
_Examining the consequences of sharing data online_
- Debating privacy as a value and right in a networked world
- Explaining ways in which unsolicited third parties can track users acros…
-
Currently Thinky has a validator function, but I couldn't find much documentation on it... From what I can see it's a function where the scope is set to the document, but there's no mention of techniq…
-
When I try to get an object with an id that doesn't exist, I get an error:
```
Error: Cannot build a new instance of `users` with `null`.
```
I think that I should receive a `null` value in the `res…
-
I realize this one might be hard-to-impossible to support, but figured I'd put it out there.
`getJoin()` is very useful, but, not particularly flexible. Image a situation -- I have 500 posts tagged w…
-
When I try to validate a model with the option "enforce_extra", I get an error.
To reproduce the problem:
``` js
var User = thinky.createModel('users', {
email: {
_type: String,
validator:…