I need to import everything that exists in a particular database in mongoDB to arangoDB. I can dump the mongoDB data as:
mongodump -d "database_name" -u "user_name" -p "password"
Which will then dump the database to a dump folder.
Now I need to import this dump to my arangoDB database. How do I do this ?