where method

NodeQuery where(
  1. bool predicate(
    1. Node
    )
)

Implementation

NodeQuery where(bool Function(Node) predicate) {
	conditions.add(predicate);
	return this;
}