reqlite icon indicating copy to clipboard operation
reqlite copied to clipboard

r.group does not work on selections

Open simonratner opened this issue 7 years ago • 0 comments

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')

simonratner avatar Apr 27 '17 00:04 simonratner