mongodb-aggregate-builder
Version:
Builder for generate aggregation query for MongoDB
12 lines (11 loc) • 372 B
TypeScript
export type UnitType = "millisecond" | "second" | "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
export type DensifyBoundsType = "full" | "partition" | any[];
export interface DensifyInterface {
field: string;
partitionByFields?: string[];
range: {
bounds: DensifyBoundsType;
step: number;
unit?: UnitType;
};
}