Interface DataSource<T>Internal

Source of a query providing results.

Note that AsyncStore is an implementation of Datasource.

interface DataSource<T> {
    query(...args): QueryResult<T>;
}

Type Parameters

  • T

Methods

Methods

  • Function to query the DataSource. This method is executed using the parameters of the QueryExecution.

    Parameters

    • Rest ...args: any[]

    Returns QueryResult<T>

Generated using TypeDoc