Azure / azure-functions-durable-powershell

PowerShell SDK for writing Durable Functions apps
MIT License
7 stars 3 forks source link

Deserialize DF orchestrator input #62

Closed davidmrdavid closed 1 year ago

davidmrdavid commented 1 year ago

It appears we're not currently applying our deserialization helper to the orchestration input. The result is that simple enough inputs like strings and numbers are correctly assigned, but more complex input like arrays are currently still represented as a JToken. The fix simple, to access the input through the C# isolated GetInput API.