Hello,
I’m having a problem understanding how I can return all paths matching a wildcard in a provision script.
For example if I have:
let connections_path=declare("InternetGatewayDevice.WANDevice.1.WANConnectionDevice.*.WANIPConnection.*", {path: Date.now()}).path;
I expect connections_path to be an array (I have 4 WANIPConnection instances) but is actually a string containing just the first one. How can I get all existing paths?