Page MenuHomeSealhub

query-stage.ts
No OneTemporary

query-stage.ts

import type { ComplexLookupBody, SimpleLookupBody } from "./query-step";
export type MatchBody = Partial<{
$not: MatchBody;
$search: any;
$nor: MatchBody[];
$or: MatchBody[];
$and: MatchBody[];
[field: string]: unknown;
}>;
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;
}>;
export default QueryStage;

File Metadata

Mime Type
text/x-java
Expires
Wed, May 7, 19:42 (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
629996
Default Alt Text
query-stage.ts (541 B)

Event Timeline