getNodesByRoot method

Future<List<Node>> getNodesByRoot(
  1. String rootId
)

Implementation

Future<List<Node>> getNodesByRoot(String rootId) async {
  return _repository.query(query: NodeRootQuery(rootId));
}