RunQuery

class RunQuery(DBNLObject):
    id: str
    project_id: str
    name: str
    query: dict[str, Any]

Fields

Argument
Description

id

str

The ID of the Run. Run ID starts with the prefix run_

project_id

str

The ID of the Project this RunQuery is associated with.

name

str

The name of the RunQuery.

query

dict[str, Any]

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

Supported Functions

dbnl.create_run_query

dbnl.get_run_query

dbnl.set_run_query_as_baseline

Was this helpful?