From 988bcaf3c6b0e8742a3760bcca6a7db5486b3ed5 Mon Sep 17 00:00:00 2001 From: Taras Dubyk Date: Wed, 25 Sep 2024 14:41:21 +0300 Subject: [PATCH] use primary or unique constraint for relationship parent field (#120) --- package.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 519c329..4839117 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,14 @@ "disablePipelines": true }, "relationships": { - "compositeRelationships": true + "compositeRelationships": { + "allowRelationshipsByProperties": [ + "primaryKey", + "unique", + "compositeUniqueKey", + "compositePrimaryKey" + ] + } }, "FEScriptCommentsSupported": true, "enableFetchSystemEntitiesCheckbox": true,