Refactor.

This commit is contained in:
mike12345567 2021-12-03 10:31:09 +00:00
parent a6de5a4fa1
commit a7e779639d
1 changed files with 4 additions and 4 deletions

View File

@ -91,11 +91,11 @@ exports.exportView = async ctx => {
const relationships = Object.entries(schema)
.filter(entry => entry[1].type === FieldTypes.LINK)
.map(entry => entry[0])
rows.forEach(row => {
relationships.forEach(column => delete row[column])
})
// delete relationships from schema
// iterate relationship columns and remove from and row and schema
relationships.forEach(column => {
rows.forEach(row => {
delete row[column]
})
delete schema[column]
})