select method

Query<EntityType> select(
  1. List<String> selections
)

Implementation

Query<EntityType> select(List<String> selections) {
  fieldSelections.addAll(selections);
  return this;
}