Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Get children with filter in Waapi query (C++)

0 votes
Hello,
I got that AkJson which works, but I want to add a filter to it to only get Queries.

AkJson arg(AkJson::Map{
            {
                {"from", AkJson::Map{{ "id", AkJson::Array{ AkVariant(guid) }}}},
                {"transform", AkJson::Array{ AkJson::Map {{"select", AkJson::Array{ AkVariant("children")}}}}}
            }});

The WAQL command would be: $"\Queries" select descendants where type="Query"

Could somebody pls tell me how to achieve that?

Best Regards
asked Feb 24, 2022 in General Discussion by jonas k. (150 points)

Please sign-in or register to answer this question.

...