get method

Future<SavedQuery> get(
  1. String matterId,
  2. String savedQueryId, {
  3. String? $fields,
})

Retrieves the specified saved query.

Request parameters:

matterId - The ID of the matter to get the saved query from.

savedQueryId - ID of the saved query to retrieve.

$fields - Selector specifying which fields to include in a partial response.

Completes with a SavedQuery.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<SavedQuery> get(
  core.String matterId,
  core.String savedQueryId, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/matters/' +
      commons.escapeVariable('$matterId') +
      '/savedQueries/' +
      commons.escapeVariable('$savedQueryId');

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return SavedQuery.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}