1
votes

I have an aws neptune cluster and which I inserted many ntriples and nquads data using sparql http api.

curl -X POST --data-binary 'update=INSERT DATA { http://test.com/s http://test.com/p http://test.com/o . }' http://your-neptune-endpoint:8182/sparql

I would like to clean all the data I inserted(not the instance)

How can I do that?

1

1 Answers

0
votes

You can do a SPARQL DROP ALL to delete all your data.

If you want a truly empty database (no data, no metrics in cloudwatch, no audit history etc), then I would highly recommend creating a new cluster up fresh. It takes only a few minutes.