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

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -