get method
Gets a single document.
Request parameters:
name
- Required. The resource name of the Document to get. In the
format:
projects/{project_id}/databases/{database_id}/documents/{document_path}
.
Value must have pattern
^projects/\[^/\]+/databases/\[^/\]+/documents/\[^/\]+/.*$
.
mask_fieldPaths
- The list of field paths in the mask. See
Document.fields for a field path syntax reference.
readTime
- Reads the version of the document at the given time. This may
not be older than 270 seconds.
transaction
- Reads the document in a transaction.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Document.
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<Document> get(
core.String name, {
core.List<core.String>? mask_fieldPaths,
core.String? readTime,
core.String? transaction,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (mask_fieldPaths != null) 'mask.fieldPaths': mask_fieldPaths,
if (readTime != null) 'readTime': [readTime],
if (transaction != null) 'transaction': [transaction],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1/' + core.Uri.encodeFull('$name');
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return Document.fromJson(_response as core.Map<core.String, core.dynamic>);
}