mongoolia
mongoolia copied to clipboard
Keep your mongoose schemas synced with Algolia
It throws this error when I run `User.syncWithAlgolia().then((r) => console.log(r)).catch((err) => console.log(err));` ``` (node:3160) DeprecationWarning: collection.update is deprecated. Use updateOne, updateMany, or bulkWrite instead. (Use `node --trace-deprecation ...` to show...
I am running mongoolia with mongoose `5.2.8`. `syncWithAlgolia()` works fine some times, other times it errors with `doc.pushToAlgolia is not a function` reproduction here: https://github.com/bakery/algolia-mongoose-5
Hey everyone, I want to use mongoolia to sync my MongoDB with Algolia but am currently facing this bug when running the code: `TypeError: TagSchema.syncWithAlgolia is not a function` This...
I noticed that "_algoliaObjectID" is not being returned when I query my model. I need to know its ID to update it on Algolia when I update my local db....
I have a mongoose schema that references a 'User' schema. I'd like certain fields to be indexed into Algolia like the users name, and a few other fields, but the...