I need to pull custom field data, but only if CustomField=true.
This is not working and I am sure it is a simple fix.

Line 20.
return z.request(options).then((response) => {
response.throwForStatus();
const results = response.json;
const col = results["DatabaseColumns"].map((item) => {
return {
...item,
id: item["ColumnName"],
if 'IsCustom': true,
};
});
Best answer by hank3rd
View original