Page MenuHomeSealhub

query-stage.ts
No OneTemporary

query-stage.ts

import type { ComplexLookupBody, SimpleLookupBody } from "./query-step.js";
export type MatchBody = Partial<{
$not: MatchBody;
$search: any;
$nor: MatchBody[];
$or: MatchBody[];
$and: MatchBody[];
[field: string]: unknown;
}>;
export type QueryStage = Partial<{
$match: MatchBody;
$lookup: SimpleLookupBody | ComplexLookupBody;
$unwind: string;
$skip: number;
$limit: number;
$sort: { [field_name: string]: 1 | -1 };
$group: {
_id: string;
[other: string]: any;
};
$count: string;
$unset: string;
}>;

File Metadata

Mime Type
text/x-java
Expires
Tue, Jul 8, 08:12 (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
803850
Default Alt Text
query-stage.ts (523 B)

Event Timeline