-2

I want example and code for all the services of feathersJS.

Like

  1. find
  2. get
  3. create
  4. update
  5. patch
  6. remove
  7. update

All the services in on app with the help of RethinkDB.

Harsh Patel
  • 6,334
  • 10
  • 40
  • 73

1 Answers1

0

There are a couple of places to find examples.

The RethinkDB section in the feathers databases docs has some examples (especially of find).

https://docs.feathersjs.com/api/databases/rethinkdb.html#querying

And the more general docs section on Services has examples of each type.

https://docs.feathersjs.com/api/services.html

If you know what you are trying to achieve in RethinkDB already then usually you can put options into the params argument that gets passed through the database adapter.

sagannotcarl
  • 354
  • 2
  • 13