I am using the Configuration Migration Tool to create a schema for data import. I want to pull the data set with a 1:M relationship. But I couldn't find the option to add the 1:m relations. The Import setting is showing N:N, the one I am looking for is not showing.
I try to add it liek this ( see below), but when running in the pipeline, it fail to recongnize the link-entity, and the filter on the link-entity. Any suggestions?
<entity name="customdialogconfigstep" displayname="Custom Dialog Config Step" etc="10157" primaryidfield="customdialogconfigstepid" primarynamefield="name" disableplugins="true">
<fields>
<field displayname="Config" name="configData" type="string" customfield="true" />
</fields>
<link-entity name="customdialogconfig" from="customdialogconfigid" to="customdialogconfig" link-type="inner">
<filter>
<condition attribute="app" operator="eq" value="Test" />
</filter>
</link-entity>
</entity>