Hello,
I Am trying to figure out if I can rename an existing field using PYTHON SDK.
{
"id": "12345",
"docType": "Car"
}
I need to rename “id” field to “carId” and get this:
{
"carId": "12345",
"docType": "Car"
}
Instead of the N1Ql query do we have a way to update the same using the SDK.
TIA