Hi,
I have a requirement to inherit some attributes from a "subnetwork controller" feature when features are added or updated in a network. I am thinking of Arcade calculation attribute rule that fires on add or update. But I am struggling to query the subnetwork controller without SubnetworkName being already populated. We have a nightly process to run "update subnetwork" for all "dirty" subnetworks and we have UN set-up in non-eventing mode so that attribute rules do not fire on "Update Subnetwork" (to preserve real user editor tracking and to optimize performance etc)
I am aware that Subnetwork Controllers table can be initialised using FeatureSetByName as below
var snc_set = FeatureSetByName($datastore, 'Subnetworks', subnetwork_fields);
But without SubnetworkName field already populated for the feature, I am not sure how I can filter only the subnetwork controller for the current feature.
FeatureSetByAssociation doesn't seem to support "Subnetwork" association type.
Any other way to query/filter Subnetworks table?
Thanks,