Netflix / falcor

A JavaScript library for efficient data fetching
http://netflix.github.io/falcor
Apache License 2.0
10.47k stars 444 forks source link

Falcor can integrate with mongoose? #967

Closed wizardnet972 closed 4 years ago

wizardnet972 commented 4 years ago

Does Falcor have integration to mongoose? or if I want to get a model or do any CRUD operation, I need to write a function which parse the query and return the results from mongoose model?

jcranendonk commented 4 years ago

The library does not currently provide integration with Mongoose or MongoDB. Falcor and Mongoose both offer similar functionality, in providing data modeling tools and query building, but the Falcor client library does not depend on or require any particular persistence service.

If you're looking to provide a Falcor interface to a MongoDB server, you could write an implementation of the DataSource interface to target that particular backend.