Interface PreviewFetchedDocument

A fetched document containing its ID and field values.

FetchedDocumentRecord

interface PreviewFetchedDocument {
    _id: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

_id: string

The unique identifier of the document.

FetchedDocumentRecord