Hi, I'm new to Ignition and its module development using Java SDK. I'm looking for a way to collect/query all device details including device field/type. My purpoose is to do automatically some stuff like adding tags to tag providers, activate historical on them, etc.without open the designer.
I tried doing this kind of query in a service I run in my Java module
List<DeviceSettingsRecord> deviceSettingsRecords = context.getPersistenceInterface()
.query(new SQuery<>(DeviceSettingsRecord.META, SQueryMode.SREAD_ONLY));
but data it returns seems to be not useful. Not even with this approach I was able to get data I need
List<OpcConnection> conn = context.getOpcManager().getConnections();
Any suggest?
Thanks
A