How to apply Distinct Query in OrientDB?

3.2k Views Asked by At

I want use Distinct Query in OrientDb. Any one have idea about that how to apply that but i want Distinct Query Builder.

Oriento Query

I know that : SELECT DISTINCT(name) FROM City

but I want something like that Query Builder : db.select().distinct(name).from(City)

//Right Select Query Builder
db.select().from('City').where({status: 'true'}).all()    

AND

how to apply object in below Query ?

  var abc = {Country : 'India'};
  'SELECT DISTINCT(name) FROM City where' + abc ; 
1

There are 1 best solutions below

0
On BEST ANSWER

You probably want something like

db.select('distinct(name)').from('City').column('name').all()