* @param until Selector marking when the operation should stop
* @param selector Previous siblings filter
* @return a {@link SlingQuery} object transformed by this operation
*/
public SlingQuery prevUntil(String until, String selector) {
return functionWithSelector(new PrevFunction(new Selector(until, searchStrategy).asPredicate()),
selector);
}