Calls a defined callback function on each QueryResult. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
The initial value of the accumulator.
A function that accepts a QueryResult and accumulator, and returns an accumulator.
Performs the specified action for each element.
A function that accepts a QueryResult. forEach calls the fn function one time for each QueryResult.
Calls a defined callback function on each QueryResult, and returns an array that contains the results.
A function that accepts a QueryResult. map calls the fn function one time for each QueryResult.
Calls a defined callback function on each QueryResult. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.