UNPKG

contensis-core-api

Version:

A dependency library used by contensis-delivery-api and contensis-management-api

11 lines (10 loc) 317 B
import { QueryAggregations } from './QueryAggregations'; import { FieldLinkDepths } from './FieldLinkDepths'; export interface IZenqlQuery { aggregations?: QueryAggregations; fieldLinkDepths?: FieldLinkDepths; fields?: string[]; pageIndex: number; pageSize: number; zenql: string; }