or method

NodeQuery or(
  1. Query<Node> q2
)

Require that either this or q2 matches.

Implementation

NodeQuery or(Query q2) => NodeQuery().where((e) => matches(e) || q2.matches(e));