hasChildWhere method

NodeQuery hasChildWhere(
  1. dynamic builder(
    1. NodeQuery
    )
)

Match only elements with at least one child matching the query produced by builder.

Implementation

NodeQuery hasChildWhere(Function(NodeQuery) builder) {
	return where((n) => buildQuery(builder).findOne(n) != null);
}