hydrate-mongodb
Version:
An Object Document Mapper (ODM) for MongoDB.
19 lines (18 loc) • 360 B
TypeScript
export declare enum QueryKind {
FindAll = 0,
FindEach = 1,
FindEachSeries = 2,
FindOne = 3,
FindOneById = 4,
FindOneAndRemove = 5,
FindOneAndUpdate = 6,
FindOneAndUpsert = 7,
FindCursor = 8,
RemoveAll = 9,
RemoveOne = 10,
UpdateAll = 11,
UpdateOne = 12,
Upsert = 13,
Distinct = 14,
Count = 15,
}