Hi,
I have defined a Data model with two Views, say Employee and Address, both of this do not have any relationship.
For instances in Employee and Address view I have kept externalIds same, say emp101, emp102,... for both view instances.
Employee
extrenalId | Name | Age |
---|---|---|
emp101 | Tom | 30 |
emp102 | Harry | 28 |
Address
externalId | City | Pincode |
---|---|---|
emp101 | Pune | 123 |
emp102 | Mumbai | 456 |
I am using cognite sdk sync api call to synchronize instances of Employee view.
There is one Transformation on Address to update all the pincode values.
After running transformation, when sync api is called it always return all the values of Employee instances even if they are not updated. Is there any resolution to this unexpected behavior?