MongoDriver
Hierarchy
- DatabaseDriver<MongoConnection>
- MongoDriver
Index
Constructors
Properties
Methods
- aggregate
- close
- connect
- convertException
- count
- countVirtual
- createCollections
- createEntityManager
- dropCollections
- ensureIndexes
- find
- findOne
- findVirtual
- getConnection
- getDependencies
- getMetadata
- getPlatform
- init
- loadFromPivotTable
- lockPessimistic
- mapResult
- nativeDelete
- nativeInsert
- nativeInsertMany
- nativeUpdate
- nativeUpdateMany
- reconnect
- refreshCollections
- setMetadata
- syncCollection
Constructors
constructor
Parameters
config: Configuration<IDatabaseDriver<Connection>>
Returns MongoDriver
Properties
[EntityManagerType]
readonlyconfig
Methods
aggregate
Parameters
entityName: string
pipeline: any[]
optionalctx: ClientSession
Returns Promise<any[]>
close
Parameters
optionalforce: boolean
Returns Promise<void>
connect
Returns Promise<MongoConnection>
convertException
Parameters
exception: Error
Returns DriverException
count
Type parameters
- T: object
Parameters
entityName: string
where: FilterQuery<T>
options: CountOptions<T, never> = {}
optionalctx: ClientSession
Returns Promise<number>
countVirtual
Type parameters
- T: object
Parameters
entityName: string
where: FilterQuery<T>
options: CountOptions<T, any>
Returns Promise<number>
createCollections
Returns Promise<void>
createEntityManager
Type parameters
- D: IDatabaseDriver<Connection, D> = IDatabaseDriver<Connection>
Parameters
optionaluseContext: boolean
Returns D[typeof EntityManagerType]
dropCollections
Returns Promise<void>
ensureIndexes
Returns Promise<void>
find
Finds selection of entities
Type parameters
- T: object
- P: string = never
Parameters
entityName: string
where: FilterQuery<T>
options: FindOptions<T, P> = {}
Returns Promise<EntityData<T>[]>
findOne
Finds single entity (table row, document)
Type parameters
- T: object
- P: string = never
Parameters
entityName: string
where: FilterQuery<T>
options: FindOneOptions<T, P> = ...
Returns Promise<null | EntityData<T>>
findVirtual
Type parameters
- T: object
Parameters
entityName: string
where: FilterQuery<T>
options: FindOptions<T, any>
Returns Promise<EntityData<T>[]>
getConnection
Parameters
type: ConnectionType = 'write'
Returns MongoConnection
getDependencies
Returns name of the underlying database dependencies (e.g.
mongodb
ormysql2
) for SQL drivers it also returnsknex
in the array as connectors are not used directly thereReturns string[]
getMetadata
Returns MetadataStorage
getPlatform
Returns MongoPlatform
init
Returns Promise<void>
loadFromPivotTable
When driver uses pivot tables for M:N, this method will load identifiers for given collections from them
Type parameters
- T: object
- O: object
Parameters
prop: EntityProperty<any>
owners: Primary<O>[][]
optionalwhere: FilterQuery<any>
optionalorderBy: QueryOrderMap<T>[]
optionalctx: any
optionaloptions: FindOptions<T, any>
Returns Promise<Dictionary<T[]>>
lockPessimistic
Type parameters
- T
Parameters
entity: T
options: LockOptions
Returns Promise<void>
mapResult
Type parameters
- T: object
Parameters
result: EntityDictionary<T>
optionalmeta: EntityMetadata<T>
populate: PopulateOptions<T>[] = []
Returns null | EntityData<T>
nativeDelete
Type parameters
- T: object
Parameters
entityName: string
where: FilterQuery<T>
options: { ctx?: ClientSession } = {}
optionalctx: ClientSession
Returns Promise<QueryResult<T>>
nativeInsert
Type parameters
- T: object
Parameters
entityName: string
data: EntityDictionary<T>
options: NativeInsertUpdateOptions<T> = {}
Returns Promise<QueryResult<T>>
nativeInsertMany
Type parameters
- T: object
Parameters
entityName: string
data: EntityDictionary<T>[]
options: NativeInsertUpdateManyOptions<T> = {}
Returns Promise<QueryResult<T>>
nativeUpdate
Type parameters
- T: object
Parameters
entityName: string
where: FilterQuery<T>
data: EntityDictionary<T>
options: NativeInsertUpdateOptions<T> & UpsertOptions<T> = {}
Returns Promise<QueryResult<T>>
nativeUpdateMany
Type parameters
- T: object
Parameters
entityName: string
where: FilterQuery<T>[]
data: EntityDictionary<T>[]
options: NativeInsertUpdateOptions<T> & UpsertManyOptions<T> = {}
Returns Promise<QueryResult<T>>
reconnect
Returns Promise<MongoConnection>
refreshCollections
Parameters
options: CreateSchemaOptions = {}
Returns Promise<void>
setMetadata
Parameters
metadata: MetadataStorage
Returns void
syncCollection
Type parameters
- T: object
- O: object
Parameters
coll: Collection<T, O>
optionaloptions: DriverMethodOptions
Returns Promise<void>
Converts native db errors to standardized driver exceptions