js-data-rethinkdb icon indicating copy to clipboard operation
js-data-rethinkdb copied to clipboard

can't filter on nested data

Open jmdobry opened this issue 9 years ago • 1 comments

this works
    return rethinkdbAdapter.r.table('limits').filter({'user': {'user_id': user_id}}).run();
// this does not
    return Limit.findAll({where: {'user.user_id': {'==': user_id}}});
// this does not work either
    return Limit.findAll({'user.user_id': user_id});

jmdobry avatar Oct 19 '15 16:10 jmdobry

Same issue here. Any idea when it will be fixed?

paulojrrsantos avatar Mar 24 '16 17:03 paulojrrsantos