Hi Daniel, we do not have a migration guide for that, but it is on our todo list. Maybe you can help us to write such a guide by providing some of your MongoDB insight and queries?
If you say that you use NodeJS, do you use arangojs as driver? In that case, firstExample() should be what findOne() is with MongoDB: https://github.com/arangodb/arangojs#collectionfirstexample The method to insert new documents is called the same, save(): https://github.com/arangodb/arangojs#documentcollectionsave When using the db-object (Arangosh / Foxx), note that there's also an insert() method. save() is just an alias however, so they do the exact same thing. -- You received this message because you are subscribed to the Google Groups "ArangoDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
