orientjs
orientjs copied to clipboard
The official fast, lightweight node.js client for OrientDB
Hello I'm not sure if this is possible. When using live queries I'm not always interested in the whole node when this node is updated. I tried adding the fields...
var trx = db.let('bulkitems', function(p){ p.insert().into("tabletobulk") .set([{name: 'item1'}, {name: 'itemN'}]) }) .commit().return('$bulkitems').all() .then( function(results){ console.log(results); //only save last item but need [@rid1, @rid2] } );
I use `Migration.Manager.up()` 2 times in my app: in a migrate script, where I call `process.exit()` after it finishes, and in my tests, as a before hook. The problem is...
I am trying to build upsert functionality for a vertex. My code looks like this: ```js const existingBuyer = await config.db.select().from('Buyer').where({ id: rawBuyer.id }).one(); if (_.isUndefined(existingBuyer)) { transaction.let(buyerName, (t) =>...
Hi, Connection is working fine with below configuration db: { activeVendor: 'orientdb', username: 'root', password: 'xxx', host: 'localhost', port: '2424', database: 'xxxxx', databaseUsername: "admin", databasePassword: "admin" } Once the orient...
Hi use OrientDB 2.1.7 and orientjs 2.1.0 if I use "db.close()" and then "server.close()" there appear two connection that have never disappear in the database ``` function(req,res) { var Oriento...
I've received this error when I tried to do a load test on my API using Orientjs. When I increase the number of clients orientjs dies! 0|bim-stag | at createUnsafeBuffer...
I have a vertex with edges of 4 diff classes. There are 36 edges by each of two classes and by one edge on rest of. select from #vertex shows...
_From @phpnode on April 2, 2014 21:37_ Currently only the simpler 'embedded' [RIDBag](https://github.com/orientechnologies/orientdb/wiki/RidBag) type is supported. We need to also support the tree based type. _Copied from original issue: codemix/oriento#5_
---- OS: centos06 node version: v6.10.0 orientjs version: 2.2.3 orientdb version: orientdb-community-2.2.17 ---- Hey guys, Can you please help me figure out how to create a partial index based on...