Michel

Results 249 comments of Michel

If you submit a PR, I'll merge it.

What's the code? On Thu, Aug 17, 2017, 20:40 Justin Keller wrote: > I have the following model: > > 'use strict'; > > const orm = require('../lib/orm.js'); > const...

How do you save your document? The duplicate key error is thrown on the primary key, secondary indexes can handle duplicate key.

I didn't quite follow up for some time - what's rebirth? Is it just a new name or is it a new fork from the Linux foundation? As for the...

Sounds good On Tue, May 22, 2018, 21:13 Alisson Cavalcante Agiani < [email protected]> wrote: > We're gonna separate all official drivers(and some unofficial ones) into > their own repositories under...

@marshall007 -- `Model.filter({foo: 'bar})("field")` doesn't work. An instance of Query is an object, not a function. However, this works fine `Model.filter({foo: 'bar}).getField("field")`, `Model.filter({foo: 'bar}).nth(0)`

Ah, I mentionned `nth` and `getField`, but `bracket` also works. ``` Model.filter({foo: 'bar}).bracket("field") ``` It's just that you can't do ``` Model.filter({foo: 'bar})("field") ```

This is expected, it's how RethinkDB behaves. You can catch the out of bound error in RethinkDB with default.