get_run_query

Retrieve a dbnl RunQuery with the given name

dbnl.get_run_query(
    project: Project,
    name: str,
) -> RunQuery:

Parameters

Arguments
Description

project

The dbnl Projectthis RunQueryis associated with

name

Name of the Run Query.

Returns

Type
Description

The dbnl RunQuery, typically used for finding a Dynamic Baselinefor a Test Session

Example

query = dbnl.get_run_query(
  project=project,
  name="look back 3"
)

Last updated

Was this helpful?