Arangodb: Is it possible to use an existing collection within Foxx -


i interested in created foxx application arango - want use collection have , use in other ways. interface , documentation seems need create new collection.

is there work around can use existing collection?

yes, can, can skip creation of new collection when adding new fox service.

and use collection in db, instance

var db = require('org/arangodb').db; db.yourcollectionname.save({yourdocument}); 

here can find collection methods https://docs.arangodb.com/documents/documentmethods.html


Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -