rethinkdb

2016-05-10T18:32:17.000034Z

if i have

2016-05-10T18:32:20.000035Z

r
  .table('EAVT')
  .group('e', 'a')
  .max('stamp’)

2016-05-10T18:32:34.000036Z

is it possible to add a filter after max?

2016-05-10T18:32:55.000037Z

`

2016-05-10T18:32:59.000038Z

r
  .table('EAVT')
  .group('e', 'a')
  .max('stamp')
  .filter({added: true})

2016-05-10T18:33:01.000039Z

this gives me

2016-05-10T18:33:07.000040Z

e: Cannot convert OBJECT to SEQUENCE in:

afhammad 2016-05-10T22:59:49.000041Z

whats the equivilent of the r.row function in clj-rethinkdb?

afhammad 2016-05-10T23:00:27.000042Z

trying to do something like this: r.table('videos').get(id).update({ views: r.row('views').add(1) })