src/core/domain/interfaces/search-info.interface.ts
Structure of search metadata
Properties |
pit |
pit:
|
Type : EsPit
|
Previous search saved PIT |
tiebreaker |
tiebreaker:
|
Type : []
|
Special tiebreaker used by Elasticsearch. Indicates the starting point of next search |
import { EsPit } from "./es-pit.interface";
/**
* Structure of search metadata
*/
export interface SearchInfo {
/**
* Previous search saved PIT
*/
pit: EsPit;
/**
* Special tiebreaker used by Elasticsearch.
* Indicates the starting point of next search
*/
tiebreaker: unknown[];
}