I got a scenario like below.
I make a call to a logic app with this example json. The projectDate object is optional. Sometimes its filled and when its not it is a null.
{
"data": {
"object": {
"ProjectId": "a7ba682e445494341e90636afc34e260",
"ProjectDate": null
}
}
}
Now i have a compose action in which I compose a new dataset.
{
"ProjectDate": "",
"ProjectId": "a7ba682e445494341e90636afc34e260"
}
So it makes an empty string instead of the null value. How can i get this null value mapped?