Index: dna-graph/src/main/java/org/jboss/dna/graph/search/SearchEngineIndexer.java =================================================================== --- dna-graph/src/main/java/org/jboss/dna/graph/search/SearchEngineIndexer.java (revision 1539) +++ dna-graph/src/main/java/org/jboss/dna/graph/search/SearchEngineIndexer.java (working copy) @@ -288,6 +288,7 @@ public class SearchEngineIndexer { Location topNode = locationIter.next(); assert topNode.equals(startingLocation); Map properties = readSubgraph.getPropertiesFor(topNode); + if (properties == null) return; if (startingLocation.getPath().isRoot()) { // The properties of the root node generally don't include the primary type, but we need to add it here ... Property rootPrimaryType = context.getPropertyFactory().create(JcrLexicon.PRIMARY_TYPE, DnaLexicon.ROOT);