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
Post a Comment