Skip to main content
Version: Next

MongoDriver

Hierarchy

Index

Constructors

constructor

Properties

[EntityManagerType]

[EntityManagerType]: MongoEntityManager<MongoDriver>

readonlyinheritedconfig

Methods

aggregate

  • aggregate(entityName, pipeline, ctx): Promise<any[]>
  • Parameters

    • entityName: string
    • pipeline: any[]
    • optionalctx: ClientSession

    Returns Promise<any[]>

inheritedclose

  • close(force): Promise<void>
  • Parameters

    • optionalforce: boolean

    Returns Promise<void>

inheritedconnect

inheritedconvertException

  • Converts native db errors to standardized driver exceptions


    Parameters

    • exception: Error

    Returns DriverException

count

  • count(entityName, where, options, ctx): Promise<number>
  • Parameters

    Returns Promise<number>

inheritedcountVirtual

  • countVirtual(entityName, where, options): Promise<number>
  • Parameters

    Returns Promise<number>

createEntityManager

  • Parameters

    • optionaluseContext: boolean

    Returns D[typeof EntityManagerType]

find

  • find(entityName, where, options): Promise<EntityData<T>[]>
  • Finds selection of entities


    Parameters

    Returns Promise<EntityData<T>[]>

findOne

  • findOne(entityName, where, options): Promise<null | EntityData<T>>
  • Finds single entity (table row, document)


    Parameters

    Returns Promise<null | EntityData<T>>

findVirtual

  • findVirtual(entityName, where, options): Promise<EntityData<T>[]>

inheritedgetConnection

inheritedgetDependencies

  • getDependencies(): string[]
  • Returns name of the underlying database dependencies (e.g. mongodb or mysql2) for SQL drivers it also returns knex in the array as connectors are not used directly there


    Returns string[]

inheritedgetMetadata

getPlatform

inheritedloadFromPivotTable

  • loadFromPivotTable(prop, owners, where, orderBy, ctx, options, pivotJoin): Promise<Dictionary<T[]>>
  • 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

  • lockPessimistic(entity, options): Promise<void>
  • Parameters

    Returns Promise<void>

inheritedmapResult

  • mapResult(result, meta, populate): null | EntityData<T>

nativeDelete

  • nativeDelete(entityName, where, options): Promise<QueryResult<T>>
  • Parameters

    • entityName: string
    • where: FilterQuery<T>
    • options: { ctx?: ClientSession } = {}
      • optionalctx: ClientSession

    Returns Promise<QueryResult<T>>

nativeInsert

  • nativeInsert(entityName, data, options): Promise<QueryResult<T>>

nativeInsertMany

  • nativeInsertMany(entityName, data, options): Promise<QueryResult<T>>

nativeUpdate

  • nativeUpdate(entityName, where, data, options): Promise<QueryResult<T>>

nativeUpdateMany

  • nativeUpdateMany(entityName, where, data, options): Promise<QueryResult<T>>

inheritedreconnect

inheritedsetMetadata

  • setMetadata(metadata): void
  • Parameters

    Returns void

inheritedsyncCollections

  • syncCollections(collections, options): Promise<void>
  • Parameters

    Returns Promise<void>