Im trying to migrate to XbyK 31.6.2
I've remodeled a lot of content in XbyK with heavy use of Reusable Field Schemas.
I want to pass this info on to KenticoPilot to help with the migration-plan and code-migration skills.
I can get the Page and Reusable Content Items xml schema easily by using
SELECT [ClassFormDefinition]
FROM [CMS_Class]
WHERE [ClassName] = 'Article'
But I don't know how to reference the fields in the Reusable Schema parts of the Article Content Item as they are only represented in the xml as a guid that I can't find any reference to.
I can't see how Kenticopilot can generate Field Mappings if it doesn't know the field details behind the reusable field schema. Searching the entire DB for the first guid only returns references to CMS_Class
<schema guid="dd9ec902-21fe-48dd-bb5c-5a11ca3a448f" name="dd9ec902-21fe-48dd-bb5c-5a11ca3a448f">
<properties />
</schema>
<schema guid="e136cda7-94b7-4499-bc27-50a313d07aac" name="e136cda7-94b7-4499-bc27-50a313d07aac">
<properties />
</schema>
<schema guid="f1cbde10-4643-4deb-8a40-1d8acc4324ba" name="f1cbde10-4643-4deb-8a40-1d8acc4324ba">
<properties />
</schema>
<schema guid="b8542c98-bc7c-4214-8b4a-fba53d5a677a" name="b8542c98-bc7c-4214-8b4a-fba53d5a677a">
<properties />
</schema>
Would generating the C# code classes for the Content Item types be the better option and feeding that to KenticoPilot instead? I was giving it the XML as per the documentation https://docs.kentico.com/guides/upgrade-to-xbyk/upgrade-deep-dives/speed-up-remodeling-with-ai
Thank you