Updating table using changeset with currentUser

Hello,

I have a changeset in a table, which is updating my database, using a simple update query.

I want to add some data (not in the changeset) to the record at the same time - besically. I just want to add the currentUser.FullName to the record in my database (field name: updated_by).

But this value is not stored in my changeset.
Is there any way to add the current user value to each record in my changeset?

hope to hear
Neil

Hi @maillme We don't have a feature for programmatically writing to the changeset currently :disappointed: It can only reflect actual user changes to the table.

You could append any data to your changeset in the update query though!

Something along the lines of this example:

1 Like

that worked a treat - thank you!