Closed Swahvay closed 8 months ago
I'm gonna try to do some digging on this one, since it's actually quite blocking for me. I was surprised this was the first time I'd actually put a UUID field on a StructType.
Found the problem.
Here camelKey
comes back as horseId
so val = obj[camelKey]
always sets val
to undefined
.
If I have the following field definition:
Then in a create, the
horseName
field will be saved to the ent, but not thehorseID
field. Setting the sameID
value on a field in that ent that is not part of aStructType
works correctly.