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