Open
Description
I expect
r.db("foo").table("bar").filter( r.row("field").eq( value ) )
to return exactly the same results as
r.db("foo").table("bar").getAll( value, { index: "field" })
Whatever the value of value
is, including null. I could understand that we don't want to index array/object, but we should index null.