executeQuery<TQuery extends Query, TResult> method

Future<TResult> executeQuery<TQuery extends Query, TResult>(
  1. TQuery query
)

Implementation

Future<TResult> executeQuery<TQuery extends Query, TResult>(
    TQuery query) async {
  return await _middleware.handleQuery<TQuery, TResult>(query, () async {
    // Execute the query and return the result
    return null; // Replace null with the actual result of the query
  });
}