Kris Reeves
01/29/2024, 6:17 PM.save()
method returns the record's id, but i observe that the record (which you called .save on) does not have its .id
property updated. i take this to mean that none of that record's data reflects the reality of what was stored necessarily, only what you fed "in" to the system.
with that said, is it possible to get the create/modified timestamps for a record after saving it without loading it? (one might expect that after a successful save, this information is known - but the api doesn't seem to communicate it back)
i could just use new Date()
but it won't be precisely accurate, however the load times i'm experiencing seem pretty bad and i don't really want the extra api latency if i can help itEdgar Valdes
01/29/2024, 6:19 PMEdgar Valdes
01/29/2024, 6:21 PMlast-modifed-at
field in the record.Kris Reeves
01/29/2024, 6:22 PMdateCreated
and lastModifiedDate
?Kris Reeves
01/29/2024, 6:22 PMEdgar Valdes
01/29/2024, 6:25 PMsearch
, sql
?Kris Reeves
01/29/2024, 6:27 PMKris Reeves
01/29/2024, 6:28 PMKris Reeves
01/29/2024, 6:35 PMKris Reeves
01/29/2024, 6:35 PM