-
Why no results returned through the console?
```
>> Event.where(action: 'created')
=> r.table("events").filter {|var_2| var_2.get_field("action").eq("created")}
```
```
>> Event.where("id LIKE '%?%'…
-
How does one use r.now() with rethinkdbdash?
I tried like this (according to RQL official docs):
```
var file = {
originalName: form.fields.name,
path: 'xyz',
creationDate: r.…
-
In case people wanted to retrieve multiple documents based on an array of ids, they had to do
``` javascript
r.expr( [1,2,3] ).map( function(id) {
return r.table("test").get("id")
}).run(...)
```…
-
Something like
```
array($doc('_source')('cpu')('loadAvg')->nth(0)->rDefault(0))
```
Retruned an error like this
```
PHP Parse error: syntax error, unexpected '(' expecting ')' in file /path/to
``…
-
The following code seems to fail with:
Runtime error: Expected type OBJECT but found NULL.
``` php
r\table($table)->get($id)->replace(
function($doc) use ($id,$request) {
retur…
-
Hi guys,
I am diving more and more into the code, and wondering: in a world where we use Memory.js as default caching, does it make sense to have the Memory store return a subcollection whenever we `…
-
datum.php 384
it only allows a string what happens if i have an object i had a map that was an object and was not working unless i uncommend this it still looks like it crates the correct reql
-
The rql tests fail with:
``` Javascript
events.js:72
throw er; // Unhandled 'error' event
^
RqlDriverError: Unexpected token 17.
```
-
First of all: Thanks a lot for the library. It is absolutely awesome! I've been using an adapted version of pb4php before, and it was quite slow. With the compiled PHP extension, php-protobuf is like …
-
See the related issue https://github.com/rethinkdb/rethinkdb/issues/1568
Right now PHP-RQL closes a cursor on the server when the Cursor object is destructed. This is probably fine in most use cases,…