Closed
Description
Working with the arangodb java driver trying to bulk insert documents, we're encountering that while the driver will allow us to insert a single document as a json string:
val js = ObjectToJson(obj).toString
db.collection.insertDocument(js)
it will not allow us to insert a set of documents as json string:
val js = ObjectToJson(obj).toString
val jsArray = new Array(js)
db.collection.insertDocuments(jsArray)