excludeKeys method

void excludeKeys(
  1. List<String> keys
)

Exclude specific fields from the returned query

String keys not will return the columns of a result you want the data for

Implementation

void excludeKeys(List<String> keys) {
  limiters['excludeKeys'] = concatenateArray(keys);
}