get_wwise_object_info
Retrieve a summary preview of Wwise objects by providing a properly structured query from build_object_info_query. Full results are saved to a file.
Instructions
Query Wwise objects and return a summary preview.
IMPORTANT: Always use build_object_info_query() first to construct the query dict, then pass its output to this function. Do NOT hand-craft the query dict directly — the WAAPI query format is complex and error-prone; build_object_info_query() ensures correct structure (from, transform, options) every time.
IMPORTANT: The returned 'preview' only contains the first 10 results. The COMPLETE results are saved to the file path in 'output_file'. You MUST read that file to see all results — do not treat the preview as the full dataset.
Example workflow: query = build_object_info_query( from_path=["\Events"], select_transform="descendants", where_type_is=["Event"], ) results = get_wwise_object_info(query=query)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |