orientjs icon indicating copy to clipboard operation
orientjs copied to clipboard

The official fast, lightweight node.js client for OrientDB

Results 105 orientjs issues
Sort by recently updated
recently updated
newest added

Here is my SQL returned from trx.toString() : ``` LET oOperationalDays0 = (CREATE vertex OperationalDays SET weekday = 0, active = true), oOperationalDays1 = (CREATE vertex OperationalDays SET weekday =...

orientdb version: 2.2.35 orientjs version: 2.2.7 node version: 8.11.2 os: centos07 I have an edge connecting two nodes A and B. I update the edge so that it connects nodes...

I tried the statement in OrientDB Studio and it works fine but OrientJS seems not be able to handle the response? Edit: Using OrientDB v3 RC1 Code: ``` odb.query( 'SELECT...

On OrientJS 2.2.6 + OrientDB 3.0 (which actually works fine with orientjs!) I got this infinite recursion error in the client, triggered by a server error : ``` On RangeError:...

Following code giving error at closing of db connection. ```javascript const OrientDB = require('orientjs'); const config = require('../config'); const startProcess = async function () { const db = new OrientDB.ODatabase(config.db);...

Your FOSSA integration was successful! Attached in this PR is a badge and license report to track scan status in your README. Below are docs for integrating FOSSA license checks...

I can get explain of query in **orientdb**, But I don't excute that in orientjs driver. How I can using this query into **orientjs** query()? ``` explain SELECT * FROM...

I am getting this error when trying to connect to server's database fro nodejs application name: 'OrientDB.ConnectionError [ECONNREFUSED]', code: 'ECONNREFUSED', message: 'connect ECONNREFUSED 127.0.0.1:2424', data: {} }

question

Hello, i am trying to exclude all edges from result, but its not possible via nodejs driver. I have this simple query: SELECT \* FROM gift WHERE uuid = 'some-uuid'...

I have been modifying the table created by OrientDB to manage the edges which have __in__ and __out__ columns. If I modify the in and out column values directly will...

question