orientdb.insert()
.into('User')
.set({name: 'John', surname: 'Smith'})
.all()
.then(function(result) {
...
}, function(error){
...
})
これは、orientjs を介して OrientDb に単一の頂点を挿入する方法です。一度に複数のオブジェクトを挿入する方法は?
次のクエリ
orientdb.insert()
.into('User')
.set([{name: 'John', surname: 'Smith'}, {name: 'Harry', surname: 'Potter'}])
.all()
.then(function(result) {
...
}, function(error){
...
})
{name: 'Harry', surname: 'Potter'}
最後の要素 ( )のみを挿入します