ravendb
Version:
RavenDB client for Node.js
26 lines • 811 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GenericQueryResult = void 0;
const QueryResultBase_js_1 = require("./QueryResultBase.js");
class GenericQueryResult extends QueryResultBase_js_1.QueryResultBase {
totalResults;
/**
* The total results for the query, taking into account the
* offset / limit clauses for this query
*/
cappedMaxResults;
skippedResults;
scannedResults;
highlightings;
explanations;
durationInMs;
scoreExplanations;
timingsInMs;
/**
* @deprecated ResultSize is not supported anymore. Will be removed in next major version of the product.
*/
resultSize;
timeSeriesFields;
}
exports.GenericQueryResult = GenericQueryResult;
//# sourceMappingURL=GenericQueryResult.js.map