getPathNodes method

Future<List<Node>> getPathNodes(
  1. String pathPrefix
)

Gets all nodes with pathHash starting with the given prefix

Implementation

Future<List<Node>> getPathNodes(String pathPrefix) async {
  return _repository.query(query: NodePathQuery(pathPrefix));
}