Question
using ImportSourceControlledEntities to import a single entity
Hi,
How can i use the ImportSourceControlledEntities service to import a single entity: I guess i need to use the entityFilter parameter, but i'm not able to find the correct syntax:
let entityFilter = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape({
infoTableName: "InfoTable",
dataShapeName: "EntityDifference"
});
entityFilter.AddRow({name: "myTemplateToImport", entityType:"ThingTemplate"});
Resources["SourceControlFunctions"].ImportSourceControlledEntities({
entityFilter: entityFilter,
repositoryName: "SystemRepository",
path: "src/twx-source"
});
Any help or example would be appreciate.

