Michel
Michel
This is currently not possible. Joined documents have to lie on the top level. This prevents weird/undesired edge cases like if `football` contains other fields, things get complicated.
Hum, there's currently no way to say that a document has joined document that are required. One way to hack around for now is to define your own validator on...
Oh thanks for the precision, I didn't think about the case where a foreign key lead to nothing. That probably deserve an error (or at least an option to return...
A few thoughts - What would be the point of someone using logLevel = 'warn? They would know when a pool is entering slow growth mode, but never if it...
Overall the first 2 points are the main reason why I think it's a bit wonky to have warn/info for rethinkdbdash. I think it's fine to move the draining messages...
So reversing the order is somehow not enough as long as I can't get the total count. This feature won't be shipped as long as https://github.com/rethinkdb/rethinkdb/issues/152 is not solved.
Err, yes this is a known limitation, though we could fix it with adding `.coerceTo("STRING")`. The problem is that if people use are mixing keys (like numbers and strings), they...
I think array were not allowed at some point, hence the concatenation. We could switch to array now, but that's a breaking change (people would have to migrate their data).
Err, sorry I didn't see that before, looking into it now.
Hum, I see, I forgot to enforce where `r.literal` is actually allowed`. Enforcing that in rethinkdb is probably done by checking the parent and making sure it's`merge`or`update`. The problem is...