Hello,
In typescript :
-
The first point : In my typescript function, i will like to create an action type so the primary key is a concatenation of more columns. For exemple :
I will like to replace :```const uniqueIdentifier1 = Uuid.random(); // Create New rows in action type const createaction = Objects.create().createaction(uniqueIdentifier1)```It’is possible to remplace
“uniqueIdentifier1 “by“concat_ws(‘_’, col1, col2, col3)”in typescript in create action type ? Please can we help me ?