Site site = getSite(request);
SearchQuery q = new SearchQueryImpl(site);
q.withVersion(Resource.LIVE);
// Only take resources that have not been modified
q.withoutModification();
// Type
q.withoutTypes(Page.TYPE);
if (StringUtils.isNotBlank(type))
q.withTypes(type);