entities = pq.asQueryResultIterable(fetchOptions);
}else {
String cursor = gaeCtx.currentCursor();
if(cursor!=null){
entities = pq.asQueryResultIterable(
fetchOptions.startCursor(Cursor.fromWebSafeString(gaeCtx.currentCursor())));
}else {
entities = pq.asQueryResultIterable(fetchOptions);
}
}
return new GaeSienaFutureIterableMapperWithCursor<T>(this, entities, query);