Schema for the result of an all documents queries operation.

interface AllDocsQueriesResult {
    results: AllDocsResult[];
}

Properties

Properties

results: AllDocsResult[]

An array of result objects - one for each query. Each result object contains the same fields as the response to a regular /_all_docs request.

Generated using TypeDoc