flexmonster-mongo-connector
Version:
Custom data source API implementation for MongoDB
12 lines (9 loc) • 358 B
text/typescript
export class MongoPipelineStages {
public static PROJECT: string = "$project";
public static MATCH: string = "$match";
public static GROUP: string = "$group";
public static SKIP: string = "$skip";
public static LIMIT: string = "$limit";
public static SORT: string = "$sort";
public static FACET: string = "$facet";
}