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

I know how to remove a vertex by id, but i need to delete all vertex (clean the db).

Deleting 1 v is like this: ver = g.v(1) g.removeVertex(ver)

share|improve this question

2 Answers

up vote 4 down vote accepted

you can try

g.V.each{g.removeVertex(it)}
share|improve this answer
It works like a charm. Thanks! – Aleksandrenko Oct 10 '12 at 8:21

Blueprints used to have a clear() method for this...

g.clear()

But it was recently removed:

https://github.com/tinkerpop/blueprints/issues/248

share|improve this answer

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.