js-data / js-data-rethinkdb

RethinkDB adapter for js-data. Main Site: http://js-data.io, API Reference Docs: http://api.js-data.io
MIT License
32 stars 5 forks source link

can't filter on nested data #15

Open jmdobry opened 9 years ago

jmdobry commented 9 years ago
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});
paulojrrsantos commented 8 years ago

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