Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does this gremlin script (executed via REST API of Neo4j) executes the sorting on the lucene index? Or are the nodes sorted in Neo4j?

g.idx('myIndex').get('name', 'aaa').sort{it.name}

Two additional questions: 1. How to set ordering? ASC/DESC 2. How to perform a fulltext search (LIKE). I already tried *, %, nothing worked

share|improve this question

1 Answer

up vote 1 down vote accepted

sort is a Groovy method. To reverse the order, use reverse:

g.idx('myIndex').get('name', 'aaa').sort{it.name}.reverse()

See:

share|improve this answer
Thanks a lot for th explanation! – Alebon Jun 17 '12 at 7:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.