try {
parsedQuery = SearchCommonUtil.parseQueryString(queryString);
} catch (final IllegalStateException illState) {
logger.error("IllegalStateException on find operation");
logger.warn("IllegalStateException on find operation", illState);
throw new MyBadRequestException(illState);
}
final List<T> results = searchAll(parsedQuery.toArray(new ImmutableTriple[parsedQuery.size()]));
return results;
}