如何在 OrientDB 中应用 Distinct Query?

How to apply Distinct Query in OrientDB?

我想在 OrientDb 中使用 Distinct Query。任何人都知道如何应用它,但我想要 Distinct Query Builder。

Oriento Query

我知道:SELECT DISTINCT(name) FROM City

但我想要类似查询生成器的东西:db.select().distinct(name).from(City)

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

如何在下面的查询中应用对象?

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

你可能想要这样的东西

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