keysToReturn method

void keysToReturn(
  1. List<String> keys
)

Define which keys in an object to return.

String keys will only return the columns of a result you want the data for, this is useful for large objects

Implementation

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