Exclude formulas

This commit is contained in:
Adria Navarro 2024-08-23 10:42:57 +02:00
parent daa152183c
commit c77ec0d17a
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ export async function enrichRelationshipSchema(
for (const relTableFieldName of Object.keys(relTable.schema)) { for (const relTableFieldName of Object.keys(relTable.schema)) {
const relTableField = relTable.schema[relTableFieldName] const relTableField = relTable.schema[relTableFieldName]
if (relTableField.type === FieldType.LINK) { if ([FieldType.LINK, FieldType.FORMULA].includes(relTableField.type)) {
continue continue
} }