executeBatch<P> abstract method

Future<void> executeBatch<P>(
  1. Command<P> mutation,
  2. List<P> paramsList
)

Executes a mutation multiple times in a single batch operation.

Implementation

Future<void> executeBatch<P>(
  Command<P> mutation,
  List<P> paramsList,
);