
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";

}