MongoDriver
Hierarchy
- DatabaseDriver<MongoConnection>
- MongoDriver
Index
Constructors
Properties
Methods
Constructors
constructor
Parameters
Returns MongoDriver
Properties
[EntityManagerType]
readonlyinheritedconfig
Methods
aggregate
Parameters
entityName: string
pipeline: any[]
optionalctx: ClientSession
Returns Promise<any[]>
inheritedclose
Parameters
optionalforce: boolean
Returns Promise<void>
inheritedconnect
Returns Promise<MongoConnection>
inheritedconvertException
Parameters
exception: Error
Returns DriverException
count
Parameters
entityName: string
where: FilterQuery<T>
options: CountOptions<T, never> = {}
optionalctx: ClientSession
Returns Promise<number>
inheritedcountVirtual
Parameters
entityName: string
where: FilterQuery<T>
options: CountOptions<T, any>
Returns Promise<number>
createEntityManager
Parameters
optionaluseContext: boolean
Returns D[typeof EntityManagerType]
find
Finds selection of entities
Parameters
entityName: string
where: FilterQuery<T>
options: FindOptions<T, P, F, E> = {}
Returns Promise<EntityData<T>[]>
findOne
Finds single entity (table row, document)
Parameters
entityName: string
where: FilterQuery<T>
options: FindOneOptions<T, P, F, E> = ...
Returns Promise<null | EntityData<T>>
findVirtual
Parameters
entityName: string
where: FilterQuery<T>
options: FindOptions<T, any, any, any>
Returns Promise<EntityData<T>[]>
inheritedgetConnection
Parameters
type: ConnectionType = 'write'
Returns MongoConnection
inheritedgetDependencies
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[]
inheritedgetMetadata
Returns MetadataStorage
getPlatform
Returns MongoPlatform
inheritedloadFromPivotTable
When driver uses pivot tables for M:N, this method will load identifiers for given collections from them
Parameters
prop: EntityProperty<any, any>
owners: (O extends { [PrimaryKeyProp]?: PK } ? PK extends keyof O<O> ? ReadonlyPrimary<UnwrapPrimary<O<O>[PK<PK>]>> : PK extends keyof O<O>[] ? ReadonlyPrimary<PrimaryPropToType<O<O>, PK<PK>>> : PK : O extends { _id?: PK } ? string | ReadonlyPrimary<PK> : O extends { uuid?: PK } ? ReadonlyPrimary<PK> : O extends { id?: PK } ? ReadonlyPrimary<PK> : O)[][]
optionalwhere: any
optionalorderBy: OrderDefinition<T>
optionalctx: any
optionaloptions: FindOptions<T, any, any, any>
optionalpivotJoin: boolean
Returns Promise<Dictionary<T[]>>
inheritedlockPessimistic
Parameters
entity: T
options: LockOptions
Returns Promise<void>
inheritedmapResult
Parameters
result: EntityDictionary<T>
optionalmeta: EntityMetadata<T>
populate: PopulateOptions<T>[] = []
Returns null | EntityData<T>
nativeDelete
Parameters
entityName: string
where: FilterQuery<T>
options: { ctx?: ClientSession } = {}
optionalctx: ClientSession
Returns Promise<QueryResult<T>>
nativeInsert
Parameters
entityName: string
data: EntityDictionary<T>
options: NativeInsertUpdateOptions<T> = {}
Returns Promise<QueryResult<T>>
nativeInsertMany
Parameters
entityName: string
data: EntityDictionary<T>[]
options: NativeInsertUpdateManyOptions<T> = {}
Returns Promise<QueryResult<T>>
nativeUpdate
Parameters
entityName: string
where: FilterQuery<T>
data: EntityDictionary<T>
options: NativeInsertUpdateOptions<T> & UpsertOptions<T, never> = {}
Returns Promise<QueryResult<T>>
nativeUpdateMany
Parameters
entityName: string
where: FilterQuery<T>[]
data: EntityDictionary<T>[]
options: NativeInsertUpdateOptions<T> & UpsertManyOptions<T, never> = {}
Returns Promise<QueryResult<T>>
inheritedreconnect
Returns Promise<MongoConnection>
inheritedsetMetadata
Parameters
metadata: MetadataStorage
Returns void
inheritedsyncCollections
Parameters
collections: Iterable<Collection<T, O>, any, any>
optionaloptions: DriverMethodOptions
Returns Promise<void>
Converts native db errors to standardized driver exceptions