Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
Hi,
I have a Thing Template named "CommonThingTemplate", there are 5 ThingTemplates created based on the CommonThingTemplate.
Now how can I get all the ThingTemplates created based on the CommonThingTemplate?
Thanks,
Solved! Go to Solution.
You could use
let result = ThingTemplates["CommonThingTemplate"].GetIncomingDependenciesAsNetwork({
maxDepth: 1 /* NUMBER {"defaultValue":10} */,
maxItems: undefined /* NUMBER {"defaultValue":500} */
});
// only consider items with parentType == "ThingTemplate"
I am not aware of a direct query like 'QueryImplementingThingTemplates' which exists for Things (QueryImplementingThings).
You could use
let result = ThingTemplates["CommonThingTemplate"].GetIncomingDependenciesAsNetwork({
maxDepth: 1 /* NUMBER {"defaultValue":10} */,
maxItems: undefined /* NUMBER {"defaultValue":500} */
});
// only consider items with parentType == "ThingTemplate"
I am not aware of a direct query like 'QueryImplementingThingTemplates' which exists for Things (QueryImplementingThings).