reqlite
reqlite copied to clipboard
r.group does not work on selections
Currently have to coerce to array, otherwise Group.fromSequence
fails silently.
Sample query:
r.db(...).table(...).filter({foo: 42}).group('foo')
The above never returns, while the following is ok:
r.db(...).table(...).filter({foo: 42}).coerceTo('array').group('foo')