runQuery method

Future<RecordsQueryResponse> runQuery({
  1. required RecordsQueryRequest request,
  2. String? authorization,
  3. String? userAgent,
})

Query for data

Pass in a query in the Quickbase query language. Returns record data with intelligent pagination based on the approximate size of each record. The metadata object will include the necessary information to iterate over the response and gather more data.

Implementation

Future<RecordsQueryResponse> runQuery(
    { required RecordsQueryRequest request,
      String? authorization, String? userAgent }) async {
  return _recordsService.runQuery(request: request, authorization: authorization, userAgent: userAgent);
}