Überprüfen Sie, ob der Schlüssel in JSON -Typscript vorhanden ist

if (cell.hasOwnProperty('Relationships')) {
	console.log("Key Found!!");
}
else {
	console.log("Not Found.");
}
Witty Wolf