Skip to content

Instantly share code, notes, and snippets.

@jpotts
Created April 16, 2014 13:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpotts/10878584 to your computer and use it in GitHub Desktop.
Save jpotts/10878584 to your computer and use it in GitHub Desktop.
Remove an aspect from every node in the repository
var results = search.luceneSearch("ASPECT:\"ASPECT NAME HERE\"");
for each (var doc in results) {
doc.removeAspect("ASPECT NAME HERE");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment