faunadb-ruby icon indicating copy to clipboard operation
faunadb-ruby copied to clipboard

Ruby driver for FaunaDB

Results 7 faunadb-ruby issues
Sort by recently updated
recently updated
newest added

We should be wrapping all network calls to Fauna in a retries block like this: ``` with_retries(:max_tries => 3, :rescue => [Timeout::Error, Errno::ECONNRESET, Fauna::Connection::NetworkError], :max_sleep_seconds => 10) do self.client.post params...

In 2.4 I was able to pass a pagination cursor to client, which would get serialized to JSON format using `result[:after]` and then I had to use a bit more...

- Show how to connect to a local faunadb - Add a GET example - Explain indexes a bit. Show how to create one before paginating.