query#
- Service.query(query_type: str = 'Item', filter: str | None = '') list #
Query the database.
- Parameters:
- query_type
str
,optional
Type of objects to query. The default is
"Item"
. Options are"Item"
,"Session"
, and"Dataset"
.- filter
str
,optional
Query string for filtering. The default is
""
. The syntax corresponds to the syntax for Ansys Dynamic Reporting. For more information, see _Query Expressions in the documentation for Ansys Dynamic Reporting.
- query_type
- Returns:
list
List of queried objects.
Examples
import ansys.dynamicreporting.core as adr adr_service = adr.Service(ansys_installation = r'C:\Program Files\ANSYS Inc\v232') ret = adr_service.connect() imgs = adr_service.query(query_type='Item', filter='A|i_type|cont|image;')