selectAll method

Avanda selectAll(
  1. List columns
)

Implementation

Avanda selectAll(List columns) {
  if (queryTree.n == null) {
    throw 'Specify service to select from';
  }
  queryTree.f = "getAll";
  fetch(columns);
  return this;
}