Jason Dobry

Results 170 comments of Jason Dobry

So you want the Emulator's CLI to print a warning when the Emulator's configured project does not match the Cloud SDK's current configured project?

Comment on [this PR](https://github.com/GoogleCloudPlatform/google-cloud-node/pull/1688) if you'd like to see a Google Cloud Functions client library which you could use to add Cloud Functions support to LambCI

Ah I see, thanks for clarifying.

I'm getting the same error.

I have been unable to reproduce this error. Where are you running the app? What is the output of `gcloud config list`?

If you use `js-data-http`, then `axios` is bundled into `dist/js-data-http.js`. If you use `js-data-fetch`, `axios` is _not_ bundled, and you need to provide an agent, such as `superagent`. If you...

On the server, you should use the `js-data-http-node` NPM package instead of `js-data-http`.

I also might be worth it to add configuration to resources, such as a `keys` option, that specifies which fields of the resource are a secondary index, so you don't...

Let me expand on my example (still a very simplified example). Let's assume I'm using js-data + js-data-angular on the frontend and js-data + js-data-rethinkdb on the backend. Frontend: ```...

@gtarcea In 1.2.0 the adapter now has a `filterSequence(sequence, params)` method. This will take a given sequence, such as `r.table('files').getAll(owner, {index: 'user'})` and then apply the proper RQL `filter`, `orderBy`,...