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