You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)