Type alias BatchFindByIdsResponse

BatchFindByIdsResponse: {
    documentsByCollection: {
        [collection: string]: DocumentWithId[];
    };
    unprocessedDescriptors: BatchFindByIdDescriptor[];
}

The response to a [[batchFindByIds]] request. The retrieved documents are stored in a map, organised by collection name.

Any unprocessed request keys are included in the unprocessedDescriptors list. You will need to submit another request to obtain these.

Type declaration

Generated using TypeDoc