API Reference > imodeljs-backend > iModels > IModelDb > restartQuery restartQuery Method Execute a query and stream its results The result of the query is async iterator over the rows. The iterator will get next page automatically once rows in current page has been read. ECSQL row. See also: ECSQL Overview Code Examples restartQuery(token: string, ecsql: string, bindings?: object | any[], limitRows?: number, quota?: QueryQuota, priority?: QueryPriority): AsyncIterableIterator<any> throws IModelError If there was any error while submitting, preparing or stepping into query Parameter Type Description token string None empty restart token. The previous query with same token would be cancelled. This would causeexception which user code must handle. ecsql string The ECSQL statement to execute bindings object | any[] The values to bind to the parameters (if the ECSQL has any).Pass an array of values if the parameters are positional.Pass an object of the values keyed on the parameter name for named parameters.The values in either the array or object must match the respective types of the parameters.See "iModel.js Types used in ECSQL Parameter Bindings" for details. limitRows number Specify upper limit for rows that can be returned by the query. quota QueryQuota Specify non binding quota. These values are constrained by global settingbut never the less can be specified to narrow down the quota constraint for the query but staying under global settings. priority QueryPriority Specify non binding priority for the query. It can help user to adjustpriority of query in queue so that small and quicker queries can be prioritized over others. Returns - AsyncIterableIterator<any> Returns the query result as an AsyncIterableIterator which lazy load result as needed See ECSQL row format for details about the format of the returned rows. Defined in core/backend/src/IModelDb.ts Line 512 Last Updated: 11 June, 2024