Skip to main content
Version: Next

CountQueryBuilder <T>

SQL query builder with fluent interface.

const qb = orm.em.createQueryBuilder(Publisher);
qb.select('*')
.where({
name: 'test 123',
type: PublisherType.GLOBAL,
})
.orderBy({
name: QueryOrder.DESC,
type: QueryOrder.ASC,
})
.limit(2, 1);

const publisher = await qb.getSingleResult();

Hierarchy

Index

Accessors

alias

  • get alias(): string
  • Returns string

helper

  • get helper(): QueryBuilderHelper
  • Returns QueryBuilderHelper

mainAlias

  • get mainAlias(): Alias<T>
  • Returns Alias<T>

Methods

addSelect

andWhere

  • andWhere(cond: QBFilterQuery<T>): this
  • andWhere(cond: string, params?: any[]): this
  • Parameters

    Returns this

as

  • as(alias: string): QueryBuilder<any, any>
  • Returns knex instance with sub-query aliased with given alias. You can provide EntityName.propName as alias, then the field name will be used based on the metadata


    Parameters

    • alias: string

    Returns QueryBuilder<any, any>

cache

  • cache(config?: number | boolean | [string, number]): this
  • Parameters

    • config: number | boolean | [string, number] = true

    Returns this

clone

  • Parameters

    • optionalreset: boolean | string[]

    Returns QueryBuilder<T>

comment

  • comment(comment: string | string[]): this
  • Prepend comment to the sql query using the syntax /* ... *&#8205;/. Some characters are forbidden such as /*, *&#8205;/ and ?.


    Parameters

    • comment: string | string[]

    Returns this

count

  • Parameters

    • optionalfield: string | string[]
    • distinct: boolean = false

    Returns CountQueryBuilder<T>

delete

distinct

distinctOn

  • postgres only


    Parameters

    • fields: string | string[]

    Returns SelectQueryBuilder<T>

execute

  • execute<U>(method?: get | all | run, mapResults?: boolean): Promise<U>
  • execute<U>(method: all, mapResults?: boolean): Promise<U>
  • execute<U>(method: get, mapResults?: boolean): Promise<U>
  • execute<U>(method: run, mapResults?: boolean): Promise<U>
  • Executes this QB and returns the raw results, mapped to the property names (unless disabled via last parameter). Use method to specify what kind of result you want to get (array/single/meta).


    Type parameters

    • U = { count: number }[]

    Parameters

    • optionalmethod: get | all | run
    • optionalmapResults: boolean

    Returns Promise<U>

from

  • Specifies FROM which entity's table select/update/delete will be executed, removing all previously set FROM-s. Allows setting a main string alias of the selection data.


    Type parameters

    • T: Partial<T> = Partial<any>

    Parameters

    Returns SelectQueryBuilder<T>

getCount

  • getCount(field?: string | string[], distinct?: boolean): Promise<number>
  • Executes count query (without offset and limit), returning total count of results


    Parameters

    • optionalfield: string | string[]
    • optionaldistinct: boolean

    Returns Promise<number>

getFormattedQuery

  • getFormattedQuery(): string
  • Returns raw interpolated query string with all the parameters inlined.


    Returns string

getKnex

  • getKnex(processVirtualEntity?: boolean): QueryBuilder<any, any>
  • Parameters

    • processVirtualEntity: boolean = true

    Returns QueryBuilder<any, any>

getKnexQuery

  • getKnexQuery(processVirtualEntity?: boolean): QueryBuilder<any, any>
  • Parameters

    • processVirtualEntity: boolean = true

    Returns QueryBuilder<any, any>

getLoggerContext

  • getLoggerContext<T>(): T

getParams

  • getParams(): readonly Value[]
  • Returns the list of all parameters for this query.


    Returns readonly Value[]

getQuery

  • getQuery(): string
  • Returns the query with parameters as wildcards.


    Returns string

getResult

  • getResult(): Promise<T[]>
  • Alias for qb.getResultList()


    Returns Promise<T[]>

getResultAndCount

  • getResultAndCount(): Promise<[T[], number]>
  • Executes the query, returning both array of results and total count query (without offset and limit).


    Returns Promise<[T[], number]>

getResultList

  • getResultList(limit?: number): Promise<T[]>
  • Executes the query, returning array of results


    Parameters

    • optionallimit: number

    Returns Promise<T[]>

getSingleResult

  • getSingleResult(): Promise<null | T>
  • Executes the query, returning the first result or null


    Returns Promise<null | T>

groupBy

  • Parameters

    • fields: string | keyof T | readonly (string | keyof T)[]

    Returns SelectQueryBuilder<T>

hasFlag

  • Parameters

    Returns boolean

having

hintComment

  • hintComment(comment: string | string[]): this
  • Add hints to the query using comment-like syntax /*+ ... *&#8205;/. MySQL and Oracle use this syntax for optimizer hints. Also various DB proxies and routers use this syntax to pass hints to alter their behavior. In other dialects the hints are ignored as simple comments.


    Parameters

    • comment: string | string[]

    Returns this

ignore

  • ignore(): this
  • Returns this

indexHint

  • indexHint(sql: string): this
  • Adds index hint to the FROM clause.


    Parameters

    • sql: string

    Returns this

innerJoin

  • innerJoin(field: string | QueryBuilder<any, any> | QueryBuilder<any>, alias: string, cond?: QBFilterQuery, schema?: string): this
  • Parameters

    Returns this

innerJoinAndSelect

  • Parameters

    • field: string | [field: string, qb: QueryBuilder<any, any> | QueryBuilder<any>]
    • alias: string
    • cond: QBFilterQuery = {}
    • optionalfields: string[]
    • optionalschema: string

    Returns SelectQueryBuilder<T>

innerJoinLateral

  • innerJoinLateral(field: string | QueryBuilder<any, any> | QueryBuilder<any>, alias: string, cond?: QBFilterQuery, schema?: string): this
  • Parameters

    Returns this

innerJoinLateralAndSelect

  • Parameters

    • field: string | [field: string, qb: QueryBuilder<any, any> | QueryBuilder<any>]
    • alias: string
    • cond: QBFilterQuery = {}
    • optionalfields: string[]
    • optionalschema: string

    Returns SelectQueryBuilder<T>

insert

join

  • Parameters

    • field: string | QueryBuilder<any, any> | QueryBuilder<any>
    • alias: string
    • cond: QBFilterQuery = {}
    • type: JoinType = JoinType.innerJoin
    • optionalpath: string
    • optionalschema: string

    Returns this

joinAndSelect

  • Parameters

    • field: string | [field: string, qb: QueryBuilder<any, any> | QueryBuilder<any>]
    • alias: string
    • cond: QBFilterQuery = {}
    • type: JoinType = JoinType.innerJoin
    • optionalpath: string
    • optionalfields: string[]
    • optionalschema: string

    Returns SelectQueryBuilder<T>

leftJoin

  • leftJoin(field: string | QueryBuilder<any, any> | QueryBuilder<any>, alias: string, cond?: QBFilterQuery, schema?: string): this
  • Parameters

    Returns this

leftJoinAndSelect

  • Parameters

    • field: string | [field: string, qb: QueryBuilder<any, any> | QueryBuilder<any>]
    • alias: string
    • cond: QBFilterQuery = {}
    • optionalfields: string[]
    • optionalschema: string

    Returns SelectQueryBuilder<T>

leftJoinLateral

  • leftJoinLateral(field: string | QueryBuilder<any, any> | QueryBuilder<any>, alias: string, cond?: QBFilterQuery, schema?: string): this
  • Parameters

    Returns this

leftJoinLateralAndSelect

  • Parameters

    • field: string | [field: string, qb: QueryBuilder<any, any> | QueryBuilder<any>]
    • alias: string
    • cond: QBFilterQuery = {}
    • optionalfields: string[]
    • optionalschema: string

    Returns SelectQueryBuilder<T>

limit

  • Parameters

    • optionallimit: number
    • offset: number = 0

    Returns SelectQueryBuilder<T>

merge

  • Parameters

    Returns this

offset

  • Parameters

    • optionaloffset: number

    Returns SelectQueryBuilder<T>

onConflict

orWhere

  • orWhere(cond: QBFilterQuery<T>): this
  • orWhere(cond: string, params?: any[]): this
  • Parameters

    Returns this

orderBy

returning

  • Parameters

    Returns this

select

setFlag

  • Parameters

    Returns this

setFlushMode

  • Parameters

    Returns this

setLockMode

  • setLockMode(mode?: LockMode, tables?: string[]): this
  • Parameters

    • optionalmode: LockMode
    • optionaltables: string[]

    Returns this

setLoggerContext

  • Sets logger context for this query builder.


    Parameters

    Returns void

then

  • then<TResult1, TResult2>(onfulfilled?: null | (value: number) => TResult1 | PromiseLike<TResult1>, onrejected?: null | (reason: any) => TResult2 | PromiseLike<TResult2>): Promise<number>
  • Provides promise-like interface so we can await the QB instance.


    Type parameters

    • TResult1 = number
    • TResult2 = never

    Parameters

    • optionalonfulfilled: null | (value: number) => TResult1 | PromiseLike<TResult1>
    • optionalonrejected: null | (reason: any) => TResult2 | PromiseLike<TResult2>

    Returns Promise<number>

toQuery

  • toQuery(): { _sql: Sql; params: readonly unknown[]; sql: string }
  • Returns { _sql: Sql; params: readonly unknown[]; sql: string }

    • _sql: Sql
    • params: readonly unknown[]
    • sql: string

truncate

unsetFlag

  • Parameters

    Returns this

update

where

  • where(cond: QBFilterQuery<T>, operator?: $and | $or): this
  • where(cond: string, params?: any[], operator?: $and | $or): this
  • Parameters

    Returns this

withSchema

  • withSchema(schema?: string): this
  • Parameters

    • optionalschema: string

    Returns this

withSubQuery

  • withSubQuery(subQuery: QueryBuilder<any, any>, alias: string): this
  • Parameters

    • subQuery: QueryBuilder<any, any>
    • alias: string

    Returns this