vjsrinath / sails-orientdb

An waterline adapter for orient db

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

More Complex orientdb query.

martingg88 opened this issue · comments

if i want to do more complicated query like fetchplan, traverse and so on.

can i user the following method to achieve what i expect?

this.table.query('complicated query statement here');

thanks

Yes, you can use it. If you want access to underlying db object used by the adapter you can get it by calling,

Collection.getDB(function(db){
//you can start calling oriento db object api directly from here
});

thanks...